manage-client 4.0.67 → 4.0.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,274 +1,244 @@
1
1
  <template>
2
- <div class="basic-main" style="height: 98%">
3
- <criteria-paged :model="model" :pager='false' v-ref:paged>
4
- <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
5
- <p class="bg-info text-center" style="padding: 8px;">付款方式报表</p>
6
- <div class="form-group" v-if="!$parent.$parent.data.f_files_path"></div>
7
- <div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
8
- <div class="row">
9
- <div class="col-sm-4" >
10
- <label class="font_normal_body" for="startDate">开始日期:</label>
11
- <datepicker id="startDate" placeholder="开始日期" style="width: 60%"
12
- v-model="model.startDate"
13
- :value.sync="model.startDate"
14
- :disabled-days-of-Week="[]"
15
- :format="'yyyy-MM-dd HH:mm:ss'"
16
- :show-reset-button="reset">
17
- </datepicker>
18
- </div>
19
- <div class="col-sm-4" >
20
- <label class="font_normal_body" for="endDate">结束日期:</label>
21
- <datepicker id="endDate" placeholder="结束日期" style="width: 60%"
22
- v-model="model.endDate"
23
- :value.sync="model.endDate"
24
- :disabled-days-of-Week="[]"
25
- :format="'yyyy-MM-dd HH:mm:ss'"
26
- :show-reset-button="reset">
27
- </datepicker>
28
- </div>
29
- <div class="col-sm-4">
30
- <label class="font_normal_body">&nbsp;&nbsp;&nbsp;公司&nbsp;&nbsp;&nbsp; </label>
31
- <right-tree @re-res="$parent.$parent.getRes"></right-tree>
32
- </div>
33
- <div class="col-sm-4">
34
- <label class="font_normal_body">&nbsp;&nbsp;&nbsp;部门&nbsp;&nbsp;&nbsp; </label>
35
- <res-select restype='department'
36
- @res-select="$parent.$parent.getdep"
37
- :parentresid="$parent.$parent.depresid"
38
- :initresid='$parent.$parent.depid'>
39
- </res-select>
40
-
41
- </div>
42
- <div class="col-sm-4">
43
- <label class="font_normal_body">&nbsp;&nbsp;&nbsp;人员&nbsp;&nbsp;&nbsp; </label>
44
- <res-select restype='user'
45
- @res-select="$parent.$parent.getuser"
46
- :parentresid="$parent.$parent.userresid"
47
- :initresid='$parent.$parent.operatorid'>
48
- </res-select>
49
- </div>
50
- <div class="col-sm-4 form-group">
51
- <label class="font_normal_body">气表类型</label>
52
- <v-select :value.sync="model.f_meter_type" multiple
53
- :options='$parent.$parent.metertypes' placeholder='请选择' v-model="model.f_meter_type"
54
- condition="f_meter_type in {}"
55
- close-on-select></v-select>
56
- </div>
2
+ <div class="basic-main" style="height: 100%">
3
+ <criteria-paged :model="model" :pager='false' v-ref:paged>
4
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
5
+ <p class="bg-info text-center" style="padding: 8px;">付款方式报表</p>
6
+ <div class="form-group" v-if="!$parent.$parent.data.f_files_path"></div>
7
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
8
+ <div class="row">
9
+ <div class="col-sm-2 form-group" >
10
+ <label class="font_normal_body" for="startDate">开始日期:</label>
11
+ <datepicker id="startDate" placeholder="开始日期" style="width: 60%"
12
+ v-model="model.startDate"
13
+ :value.sync="model.startDate"
14
+ :disabled-days-of-Week="[]"
15
+ :format="'yyyy-MM-dd HH:mm:ss'"
16
+ :show-reset-button="reset">
17
+ </datepicker>
57
18
  </div>
58
- <div class="span" style = "float:right;">
59
- <button class="button_search" @click="$parent.$parent.searchData()">查询</button>
60
- <report-print id='gasprice' top='3cm' left='0' width='100%' height='100%' :preview="true"></report-print>
61
- <report-excel id='gasprice'></report-excel>
19
+ <div class="col-sm-2 form-group" >
20
+ <label class="font_normal_body" for="endDate">结束日期:</label>
21
+ <datepicker id="endDate" placeholder="结束日期" style="width: 60%"
22
+ v-model="model.endDate"
23
+ :value.sync="model.endDate"
24
+ :disabled-days-of-Week="[]"
25
+ :format="'yyyy-MM-dd HH:mm:ss'"
26
+ :show-reset-button="reset">
27
+ </datepicker>
62
28
  </div>
29
+ <res-select-group
30
+ :show-component="$parent.$parent.resshow"
31
+ :selectin="true" :initres="$parent.$parent.initres"
32
+ :cascade =true @re-res="$parent.$parent.getRes"
33
+ v-ref:sel>
34
+ </res-select-group>
35
+
63
36
  </div>
64
- </criteria>
65
- <div partial='list' v-el:handcollect id='gasprice' style="overflow-y: scroll">
66
- <table class='tableprint' style="margin: 0px auto" v-if="!$parent.data.f_files_path">
67
- <thead>
68
- <tr>
69
- <th colspan='9' style="font-weight: normal; text-align: left;">
70
- <h3 style="text-align: center">付款方式报表</h3>
71
- </th>
72
- </tr>
73
- <tr>
74
- <th colspan='9' style="font-weight: normal; text-align: center;">
75
- 开始时间:{{model.model.startDate}}<br>
76
- 结束时间:{{ model.model.endDate }}<br>
77
- 打印时间:{{{$parent.printTime}}}
78
- </th>
79
- </tr>
80
- <tr>
81
- <th colspan='9' style="font-weight: normal; text-align: center;">
82
- <div>
83
- <span v-show="$parent.orgname.trim()!=''">公司:{{$parent.orgname}}</span>
84
- <span v-show="$parent.depname.trim()!=''"> 部门:{{$parent.depname}}</span>
85
- <span v-show="$parent.operatorname.trim()!=''">人员:{{$parent.operatorname}}</span>
86
- </div>
87
- </th>
88
- </tr>
89
- </thead>
90
- <tr>
91
- <td colspan='9'>
92
- {{{ model.data.substring(26,model.data.length-8) }}}
93
- </td>
94
- </tr>
95
- <tfoot>
96
- <tr style="text-align: left">
97
- <th colspan='3'>财务审核:</th>
98
- <th colspan='3'>收款审核:</th>
99
- <th colspan='3'>收款员:</th>
100
- </tr>
101
- </tfoot>
102
- </table>
103
- {{{ $parent.reportStr}}}
104
- </div>
105
- </criteria-paged>
106
- <modal :show.sync="show" v-ref:modal small backdrop="false">
107
- <header slot="modal-header" class="modal-header">
108
- <h4 class="modal-title">输入文件名称</h4>
109
- </header>
110
- <article slot="modal-body" class="modal-body">
111
- <div class="form-group">
112
- <input type="text" class="form-control" v-model="filename" placeholder='保存的文件名'>
37
+ <div class="span" style = "float:right;">
38
+ <button class="button_search" @click="$parent.$parent.searchData()">查询</button>
39
+ <report-print id='gasprice' top='3cm' left='0' width='100%' height='100%' :preview="true"></report-print>
40
+ <report-excel id='gasprice'></report-excel>
41
+ <div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,
42
+ 'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
113
43
  </div>
114
- </article>
115
- <footer slot="modal-footer" class="modal-footer">
116
- <button v-show="show" type="button" class="btn btn-default" @click='close'>取消</button>
117
- <button v-show="show" type="button" class="btn btn-success" @click='confirm(filename)'>确认</button>
118
- </footer>
119
- </modal>
120
- </div>
121
- </template>
122
-
123
- <script>
124
- import { DataModel } from 'vue-client'
125
- import co from 'co'
126
- let saveFile = function * (self) {
127
- // 线验证文件是否重名
128
- let count = yield self.$resetpost('api/af-revenue/sql/manageSingleTable',
129
- {data: {tablename: 't_report_record', condition: `f_files_name = '${self.filename}'`}},
130
- {resolveMsg: null, rejectMsg: null})
131
- if (count.data.length > 0) {
132
- self.$showAlert('无法保存,文件名重名', 'warning', 3000)
133
- return
134
- }
135
- let saveBack = yield self.$resetpost('api/af-revenue/logic/saveReport', {f_files_content: self.$refs.paged.$els.handcollect.innerHTML,
136
- f_files_name: self.filename, f_files_type: self.data.f_report_type, f_component_name: 'manage-bus-summary',
137
- f_operator: this.$login.f.name, f_query_month: `${self.model.model.startDate}-${self.model.model.endDate}`,
138
- f_outlets: this.$login.f.depname})
139
- if (saveBack.data.status === 'succeed') {
140
- self.show = false
141
- self.filename = ''
142
- // 后台保存完成,通知刷新
143
- self.$dispatch('save-success', self.filename)
144
- }
145
- }
146
- export default {
147
- title: '付款方式报表',
148
- props: ['data'],
149
- data () {
150
- return {
151
- printTime: this.$login.toStandardTimeString(),
152
- depresid: [],
153
- userresid: [],
154
- f_orgid: this.$login.f.orgid,
155
- f_depid: this.$login.f.depids,
156
- f_operatorid: this.$login.f.id,
157
- operatorid: [],
158
- depid: [],
159
- orgname: '',
160
- depname: '',
161
- operatorname: '',
162
- orgCondtionStr: '1=1',
163
- model: new DataModel('api/af-revenue/report/paymentMethod', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
164
- f_orgid: 'this.model.f_orgid'}),
165
- reportStr: null,
166
- show: false,
167
- }
168
- },
169
- ready () {
170
- this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
171
- this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
172
- // this.$refs.paged.$refs.criteria.search()
173
- console.log(this.$login.f)
174
- },
175
- methods: {
176
- searchData () {
177
- this.$refs.paged.$refs.criteria.search()
178
- },
179
- selfSearch (args) {
180
- this.printTime = this.$login.toStandardTimeString()
181
- console.log("condition:" + args.condition)
182
- let orgcondition = '1=1'
183
- if (this.f_orgid[0]) {
184
- orgcondition += ` and s.f_orgid in ('${this.f_orgid}')`
185
- }
186
- let deps = ''
187
- let i = 0
188
- let depss = ''
189
- if (this.f_depid[0]) {
190
- for ( i; i< this.f_depid.length; i++ )
191
- deps += `'${this.f_depid[i]}',`
192
- depss = deps.toString().substring(1,deps.length-2)
193
- orgcondition += " and s.f_depid in ( '" + depss + "' ) "
194
- }else {
195
- depss = ''
196
- }
197
- console.log("所选部门:" + depss)
198
-
199
- let opes = ''
200
- let j = 0
201
- let opess = ''
202
- if(this.f_operatorid[0]) {
203
- for ( j; j< this.f_operatorid.length; j++ )
204
- opes += `'${this.f_operatorid[j]}',`
205
- opess = opes.toString().substring(1,opes.length-2)
206
- orgcondition += "and s.f_operatorid in ( '" + opess + "' ) "
207
- }else {
208
- opess = ''
209
- }
210
- console.log("所选人员:" + opess)
44
+ <div class="row" v-show="$parent.$parent.criteriaShow">
45
+ <div class="col-sm-2 form-group">
46
+ <label class="font_normal_body">气表类型</label>
47
+ <v-select :value.sync="model.f_meter_type" multiple
48
+ :options='$parent.$parent.metertypes' placeholder='请选择' v-model="model.f_meter_type"
49
+ condition="f_meter_type in {}"
50
+ close-on-select></v-select>
51
+ </div>
52
+ </div>
53
+ </div>
54
+ </criteria>
55
+ <div partial='list' v-el:handcollect id='gasprice' style="overflow-y: scroll">
56
+ <table class='tableprint' style="margin: 0px auto" v-if="!$parent.data.f_files_path">
57
+ <thead>
58
+ <tr>
59
+ <th colspan='9' style="font-weight: normal; text-align: left;">
60
+ <h3 style="text-align: center">付款方式报表</h3>
61
+ </th>
62
+ </tr>
63
+ <tr>
64
+ <th colspan='9' style="font-weight: normal; text-align: center;">
65
+ 开始时间:{{model.model.startDate}}&nbsp;&nbsp;&nbsp;
66
+ 结束时间:{{ model.model.endDate }}
67
+ </th>
68
+ </tr>
69
+ <tr>
70
+ <th colspan='9' style="font-weight: normal; text-align: center;">
71
+ 打印时间:{{{$parent.printTime}}}
72
+ </th>
73
+ </tr>
74
+ <tr>
75
+ <th colspan='9' style="font-weight: normal; text-align: center;">
76
+ <div>
77
+ <span v-show="$parent.orgname.trim()!=''">公司:{{$parent.orgname}}</span>
78
+ <span v-show="$parent.depname.trim()!=''"> 部门:{{$parent.depname}}</span>
79
+ <span v-show="$parent.operatorname.trim()!=''">人员:{{$parent.operatorname}}</span>
80
+ </div>
81
+ </th>
82
+ </tr>
83
+ </thead>
84
+ <tr>
85
+ <td colspan='9'>
86
+ {{{ model.data.substring(26,model.data.length-8) }}}
87
+ </td>
88
+ </tr>
89
+ <tfoot>
90
+ <tr style="text-align: left">
91
+ <th colspan='3'>财务审核:</th>
92
+ <th colspan='3'>收款审核:</th>
93
+ <th colspan='3'>收款员:</th>
94
+ </tr>
95
+ </tfoot>
96
+ </table>
97
+ {{{ $parent.reportStr}}}
98
+ </div>
99
+ </criteria-paged>
100
+ <modal :show.sync="show" v-ref:modal small backdrop="false">
101
+ <header slot="modal-header" class="modal-header">
102
+ <h4 class="modal-title">输入文件名称</h4>
103
+ </header>
104
+ <article slot="modal-body" class="modal-body">
105
+ <div class="form-group">
106
+ <input type="text" class="form-control" v-model="filename" placeholder='保存的文件名'>
107
+ </div>
108
+ </article>
109
+ <footer slot="modal-footer" class="modal-footer">
110
+ <button v-show="show" type="button" class="btn btn-default" @click='close'>取消</button>
111
+ <button v-show="show" type="button" class="btn btn-success" @click='confirm(filename)'>确认</button>
112
+ </footer>
113
+ </modal>
114
+ </div>
115
+ </template>
211
116
 
212
- this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition + " and " + args.condition
213
- this.$refs.paged.search(args)
214
- },
215
- getRes (obj) {
216
- this.orgname = obj.res[0]
217
- this.depresid = obj.resids
218
- this.f_orgid = obj.resids
219
- this.userresid = obj.resids
220
- },
221
- getdep (obj, val) {
222
- this.depname = val
223
- // this.userresid = obj
224
- this.f_depid = obj
225
- },
226
- getuser ( obj, val) {
227
- this.operatorname = val
228
- this.f_operatorid = obj
229
- },
117
+ <script>
118
+ import { DataModel } from 'vue-client'
119
+ import co from 'co'
230
120
 
231
- // 根据文件路径获取储存的报表内容
232
- getFileContent (path) {
233
- this.$resetpost('api/af-revenue/logic/getReportFileContent', {f_files_path: path}, {resolveMsg: null, rejectMsg: null}).then((res) => {
234
- this.reportStr = res.data.filecontent
235
- this.model.state = '正确'
236
- })
237
- },
238
- confirm () {
239
- if (!this.filename || this.filename === '') {
240
- this.$showAlert('无法保存,文件名不能为空', 'warning', 3000)
241
- }
242
- let saveGen = saveFile(this)
243
- co(saveGen)
244
- },
245
- close () {
246
- this.show = false
247
- },
248
- // 将报表保存成文件
249
- confirmReport () {
250
- this.show = true
251
- this.filename = this.data.f_report_name + this.$login.toStandardDateString()
252
- },
253
- },
254
- watch: {
255
- 'data' (val) {
256
- if (val.f_files_path) {
257
- this.getFileContent(val.f_files_path)
258
- } else {
259
- this.reportStr = null
260
- }
261
- }
121
+ let readySomething = async function (self) {
122
+ self.$refs.paged.$refs.criteria.model.startDate = self.$login.toStandardDateString() + ' 00:00:00'
123
+ self.$refs.paged.$refs.criteria.model.endDate = self.$login.toStandardDateString() + ' 23:59:59'
124
+ self.$refs.paged.$refs.criteria.search()
125
+ }
126
+ let saveFile = function * (self) {
127
+ // 线验证文件是否重名
128
+ let count = yield self.$resetpost('api/af-revenue/sql/manageSingleTable',
129
+ {data: {tablename: 't_report_record', condition: `f_files_name = '${self.filename}'`}},
130
+ {resolveMsg: null, rejectMsg: null})
131
+ if (count.data.length > 0) {
132
+ self.$showAlert('无法保存,文件名重名', 'warning', 3000)
133
+ return
134
+ }
135
+ let saveBack = yield self.$resetpost('api/af-revenue/logic/saveReport', {f_files_content: self.$refs.paged.$els.handcollect.innerHTML,
136
+ f_files_name: self.filename, f_files_type: self.data.f_report_type, f_component_name: 'manage-bus-summary',
137
+ f_operator: this.$login.f.name, f_query_month: `${self.model.model.startDate}-${self.model.model.endDate}`,
138
+ f_outlets: this.$login.f.depname})
139
+ if (saveBack.data.status === 'succeed') {
140
+ self.show = false
141
+ self.filename = ''
142
+ // 后台保存完成,通知刷新
143
+ self.$dispatch('save-success', self.filename)
144
+ }
145
+ }
146
+ export default {
147
+ title: '付款方式报表',
148
+ props: ['data'],
149
+ data () {
150
+ return {
151
+ printTime: this.$login.toStandardTimeString(),
152
+ depresid: [],
153
+ userresid: [],
154
+ f_orgid: this.$login.f.orgid,
155
+ f_depid: this.$login.f.depids,
156
+ f_operatorid: this.$login.f.id,
157
+ operatorid: [],
158
+ depid: [],
159
+ orgname: '',
160
+ depname: '',
161
+ operatorname: '',
162
+ criteriaShow: false,
163
+ orgCondtionStr: 'and 1=1',
164
+ model: new DataModel('api/af-revenue/report/paymentMethod', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
165
+ f_orgid: 'this.model.f_orgid'}),
166
+ reportStr: null,
167
+ resshow: ['company', 'department', 'operator'],
168
+ initres: {
169
+ org: [this.$login.f.orgid],
170
+ dep: [],
171
+ user: []
262
172
  },
263
- computed: {
264
- metertypes() {
265
- return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('气表类型')]
266
- }
173
+ f_filialeid: this.$login.f.orgid,
174
+ show: false,
175
+ }
176
+ },
177
+ ready () {
178
+ readySomething(this).then(() => {
179
+ this.$emit('ready')
180
+ }).catch((error) => {
181
+ this.$emit('error', error)
182
+ })
183
+ },
184
+ methods: {
185
+ hidden () {
186
+ this.criteriaShow = !this.criteriaShow
187
+ },
188
+ searchData () {
189
+ this.$refs.paged.$refs.criteria.search()
190
+ },
191
+ selfSearch (args) {
192
+ let orgcondition = args.condition + this.orgCondtionStr
193
+ this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
194
+ this.$refs.paged.search(args)
195
+ },
196
+ async getRes(condition,obj) {
197
+ this.orgCondtionStr = condition
198
+ this.orgname = obj.orgnames[0]
199
+ this.depname = obj.depnames[0]
200
+ },
201
+ // 根据文件路径获取储存的报表内容
202
+ getFileContent (path) {
203
+ this.$resetpost('api/af-revenue/logic/getReportFileContent', {f_files_path: path}, {resolveMsg: null, rejectMsg: null}).then((res) => {
204
+ this.reportStr = res.data.filecontent
205
+ this.model.state = '正确'
206
+ })
207
+ },
208
+ confirm () {
209
+ if (!this.filename || this.filename === '') {
210
+ this.$showAlert('无法保存,文件名不能为空', 'warning', 3000)
211
+ }
212
+ let saveGen = saveFile(this)
213
+ co(saveGen)
214
+ },
215
+ close () {
216
+ this.show = false
217
+ },
218
+ // 将报表保存成文件
219
+ confirmReport () {
220
+ this.show = true
221
+ this.filename = this.data.f_report_name + this.$login.toStandardDateString()
222
+ }
223
+ },
224
+ watch: {
225
+ 'data' (val) {
226
+ if (val.f_files_path) {
227
+ this.getFileContent(val.f_files_path)
228
+ } else {
229
+ this.reportStr = null
267
230
  }
268
231
  }
269
- </script>
270
- <style scoped>
271
- .noborder{
272
- border: none;
232
+ },
233
+ computed: {
234
+ metertypes () {
235
+ return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('气表类型')]
273
236
  }
274
- </style>
237
+ }
238
+ }
239
+ </script>
240
+ <style scoped>
241
+ .noborder{
242
+ border: none;
243
+ }
244
+ </style>