manage-client 3.2.155 → 3.2.156
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.
- package/package.json +1 -1
- package/src/components/sale/businessquery/GroupChargeQuery.vue +19 -0
- package/src/filiale/liaoyuan/RecordInfoQuery.vue +23 -1
- package/src/filiale/liaoyuan/exportConfig.js +3 -2
- package/src/filiale/qianneng/ChargeQuery.vue +11 -2
- package/src/filiale/tongchuan/HandplanQuery.vue +8 -0
package/package.json
CHANGED
|
@@ -162,6 +162,9 @@
|
|
|
162
162
|
<th>
|
|
163
163
|
<nobr>公司</nobr>
|
|
164
164
|
</th>
|
|
165
|
+
<th>
|
|
166
|
+
<nobr>操作</nobr>
|
|
167
|
+
</th>
|
|
165
168
|
</tr>
|
|
166
169
|
</template>
|
|
167
170
|
<template partial='body'>
|
|
@@ -228,6 +231,9 @@
|
|
|
228
231
|
<td style="text-align: center;">
|
|
229
232
|
<nobr>{{row.f_depname}}</nobr>
|
|
230
233
|
</td>
|
|
234
|
+
<td style="text-align: center;">
|
|
235
|
+
<button class="btn btn-link" @click.stop="$parent.$parent.$parent.showchargedetail(row)">查看</button>
|
|
236
|
+
</td>
|
|
231
237
|
</template>
|
|
232
238
|
<template partial='foot'></template>
|
|
233
239
|
</data-grid>
|
|
@@ -252,6 +258,13 @@
|
|
|
252
258
|
</div>
|
|
253
259
|
</div>
|
|
254
260
|
</div>
|
|
261
|
+
<modal :show.sync="showdetail" width="80%" title="详细记录" v-ref:modal large backdrop="false">
|
|
262
|
+
<article slot="modal-body" class="modal-body" style="height: 700px">
|
|
263
|
+
<charge-query :batchid="f_batch_id" :data="data" v-if="showdetail"></charge-query>
|
|
264
|
+
</article>
|
|
265
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
266
|
+
</footer>
|
|
267
|
+
</modal>
|
|
255
268
|
</template>
|
|
256
269
|
|
|
257
270
|
<script>
|
|
@@ -270,6 +283,8 @@
|
|
|
270
283
|
title: '团缴查询',
|
|
271
284
|
data() {
|
|
272
285
|
return {
|
|
286
|
+
f_batch_id: null,
|
|
287
|
+
showdetail: false,
|
|
273
288
|
isSingleUser: null,
|
|
274
289
|
startDate1:'',
|
|
275
290
|
endDate1:'',
|
|
@@ -319,6 +334,10 @@
|
|
|
319
334
|
})
|
|
320
335
|
},
|
|
321
336
|
methods: {
|
|
337
|
+
showchargedetail(row){
|
|
338
|
+
this.showdetail = true
|
|
339
|
+
this.f_batch_id = row.id
|
|
340
|
+
},
|
|
322
341
|
getotherfooter () {
|
|
323
342
|
// this.$refs.paged.$refs.cri.$refs.exports.otherData = [];
|
|
324
343
|
// this.$refs.paged.$refs.cri.$refs.exports.footerData = [];
|
|
@@ -386,6 +386,20 @@
|
|
|
386
386
|
condition="f_llj_date <= '{} 23:59:59'">
|
|
387
387
|
</datepicker>
|
|
388
388
|
</div>
|
|
389
|
+
<div class="col-sm-2 form-group">
|
|
390
|
+
<label class="font_normal_body">设备类型</label>
|
|
391
|
+
<v-select :value.sync="row.f_devices_type" v-model="row.f_devices_type"
|
|
392
|
+
:options='$parent.$parent.devicetypes' placeholder='设备类型' :value-single="true"
|
|
393
|
+
condition="f_devices_type = '{}'"
|
|
394
|
+
close-on-select></v-select>
|
|
395
|
+
</div>
|
|
396
|
+
<div class="col-sm-2 form-group">
|
|
397
|
+
<label class="font_normal_body">使用时间</label>
|
|
398
|
+
<v-select :value.sync="row.f_use_date" v-model="row.f_use_date"
|
|
399
|
+
:options='$parent.$parent.useDate' placeholder='使用时间' :value-single="true"
|
|
400
|
+
condition="f_cost_type = '{}'"
|
|
401
|
+
close-on-select></v-select>
|
|
402
|
+
</div>
|
|
389
403
|
</div>
|
|
390
404
|
</div>
|
|
391
405
|
</criteria>
|
|
@@ -431,7 +445,10 @@
|
|
|
431
445
|
<th><nobr>证件类型</nobr></th>
|
|
432
446
|
<th><nobr>证件号码</nobr></th>
|
|
433
447
|
<th><nobr>人口数</nobr></th>
|
|
448
|
+
<th><nobr>最后安检日期</nobr></th>
|
|
434
449
|
<th><nobr>保险结束日期</nobr></th>
|
|
450
|
+
<th><nobr>设备类型</nobr></th>
|
|
451
|
+
<th><nobr>使用时间</nobr></th>
|
|
435
452
|
<th><nobr>建档日期</nobr></th>
|
|
436
453
|
<th><nobr>建档人</nobr></th>
|
|
437
454
|
<th><nobr>所属营业厅</nobr></th>
|
|
@@ -539,7 +556,10 @@
|
|
|
539
556
|
<td style="text-align: center;"><nobr>{{row.f_credentials}}</nobr></td>
|
|
540
557
|
<td style="text-align: center;"><nobr>{{row.f_idnumber}}</nobr></td>
|
|
541
558
|
<td style="text-align: center;"><nobr>{{row.f_people_num}}</nobr></td>
|
|
542
|
-
<td style="text-align: center;"><nobr>{{row.
|
|
559
|
+
<td style="text-align: center;"><nobr>{{row.f_last_check_date}}</nobr></td><!--最后安检日期-->
|
|
560
|
+
<td style="text-align: center;"><nobr>{{row.f_ins_stop_date}}</nobr></td><!--保险结束日期-->
|
|
561
|
+
<td style="text-align: center;"><nobr>{{row.f_devices_type}}</nobr></td><!--设备类型-->
|
|
562
|
+
<td style="text-align: center;"><nobr>{{row.f_use_date}}</nobr></td><!--使用时间-->
|
|
543
563
|
<td style="text-align: center;"><nobr>{{row.f_createfile_date}}</nobr></td>
|
|
544
564
|
<td style="text-align: center;"><nobr>{{row.f_createfile_person}}</nobr></td>
|
|
545
565
|
<td style="text-align: center;"><nobr>{{row.f_depname}}</nobr></td>
|
|
@@ -724,6 +744,7 @@
|
|
|
724
744
|
// 下拉框参数
|
|
725
745
|
userstates:this.$appdata.getParam('用户状态') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('用户状态')] : [],
|
|
726
746
|
bandstates:this.$appdata.getParam('微信绑定') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('微信绑定')] : [],
|
|
747
|
+
devicetypes: this.$appdata.getParam('设备类型'),
|
|
727
748
|
initres: {
|
|
728
749
|
org:[this.$login.f.orgid],
|
|
729
750
|
dep:[],
|
|
@@ -735,6 +756,7 @@
|
|
|
735
756
|
bookSlice:[{label: '全部',value: ''}],
|
|
736
757
|
pricenames:[],
|
|
737
758
|
dypayment:[{label:"全部",value:""},{label:"银行代扣",value:"银行代扣",},{label:"现金缴费",value:"现金缴费",}],
|
|
759
|
+
useDate:[{label:"8年以内",value:"8年以内"},{label:"8年以上",value:"8年以上"}]
|
|
738
760
|
}
|
|
739
761
|
},
|
|
740
762
|
ready(){
|
|
@@ -130,10 +130,11 @@ export default{
|
|
|
130
130
|
'f_user_state': '客户状态','f_userinfo_code': '客户编号','f_card_id': '卡号','f_user_name': '客户名称',
|
|
131
131
|
'f_residential_area': '小区名称','f_address': '客户地址','f_user_phone': '客户电话',
|
|
132
132
|
'f_gas_date': '通气日期','f_price_name': '气价名称','f_position': '安装位置','f_meter_type': '气表类型','f_meter_brand': '气表品牌',
|
|
133
|
-
'f_meternumber': '表号','f_metertitles': '表封号','f_aroundmeter': '左右表','f_install_date': '安装日期','f_meter_base': '气表底数',
|
|
133
|
+
'f_meternumber': '表号','f_metertitles': '表封号','f_aroundmeter': '左右表','f_install_date': '安装日期','f_llj_date': '生产日期','f_meter_base': '气表底数',
|
|
134
134
|
'f_balance': '账户余额','f_hand_date': '最后抄表日期','f_whether_hairpin': '是否发卡',
|
|
135
135
|
'f_valve_state': '阀门状态','f_user_type': '客户类型','f_gasproperties': '用气性质',
|
|
136
|
-
'f_open_date': '开户时间','f_credentials': '证件类型','f_idnumber': '证件号码','f_people_num': '人口数','
|
|
136
|
+
'f_open_date': '开户时间','f_credentials': '证件类型','f_idnumber': '证件号码','f_people_num': '人口数','f_last_check_date': '最后安检日期',
|
|
137
|
+
'f_ins_stop_date': '保险结束日期','f_devices_type': '设备类型','f_use_date': '使用时间',
|
|
137
138
|
'f_createfile_date': '建档日期','f_createfile_person': '建档人','f_depname': '所属营业厅','f_comments': '备注信息',
|
|
138
139
|
'f_used_name': '曾用名','f_rent_phone': '备用电话','f_rent_name': '租户姓名','f_zuhu_phone': '租户电话',
|
|
139
140
|
'f_contract_id': '合同ID','f_is_mgq': '是否煤改气','f_send_usegas_card': '是否发放天然气使用证',
|
|
@@ -820,7 +820,7 @@
|
|
|
820
820
|
self.sumsmodel = self.$refs.paged.$refs.grid.model.sums;
|
|
821
821
|
}
|
|
822
822
|
export default {
|
|
823
|
-
props:['data'],
|
|
823
|
+
props:['data', 'batchid'],
|
|
824
824
|
title: '收费查询',
|
|
825
825
|
data() {
|
|
826
826
|
return {
|
|
@@ -904,6 +904,12 @@
|
|
|
904
904
|
}
|
|
905
905
|
},
|
|
906
906
|
ready() {
|
|
907
|
+
if (this.batchid) {
|
|
908
|
+
this.$refs.paged.$refs.cri.model.startDate = this.data ? this.data.startDate : this.$login.toStandardDateString() + ' 00:00:00'
|
|
909
|
+
this.$refs.paged.$refs.cri.model.endDate = this.data ? this.data.endDate : this.$login.toStandardDateString() + ' 23:59:59'
|
|
910
|
+
this.$refs.paged.$refs.cri.search()
|
|
911
|
+
return
|
|
912
|
+
}
|
|
907
913
|
// this.$refs.paged.$refs.cri.model.f_state=['有效']
|
|
908
914
|
this.getaddress()
|
|
909
915
|
this.getEquipment()
|
|
@@ -1055,7 +1061,7 @@
|
|
|
1055
1061
|
this.prices = this.$MagGetSaleParam.getPrices();
|
|
1056
1062
|
},
|
|
1057
1063
|
selfSearch(args) {
|
|
1058
|
-
if (this.data) {
|
|
1064
|
+
if (this.data && !this.batchid) {
|
|
1059
1065
|
this.$parent.$parent.$parent.data.startDate=this.$refs.paged.$refs.cri.model.startDate
|
|
1060
1066
|
this.$parent.$parent.$parent.data.endDate=this.$refs.paged.$refs.cri.model.endDate
|
|
1061
1067
|
}
|
|
@@ -1068,6 +1074,9 @@
|
|
|
1068
1074
|
if(this.IdCardInfo!=''){
|
|
1069
1075
|
args.condition +=` and f_idnumber='${this.IdCardInfo}'`
|
|
1070
1076
|
}
|
|
1077
|
+
if (this.batchid) {
|
|
1078
|
+
args.condition += ` and f_batch_id=${this.batchid}`
|
|
1079
|
+
}
|
|
1071
1080
|
this.model.search(args.condition, args.model)
|
|
1072
1081
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums;
|
|
1073
1082
|
this.card=''
|
|
@@ -1026,6 +1026,14 @@
|
|
|
1026
1026
|
this.show = false
|
|
1027
1027
|
},
|
|
1028
1028
|
selfSearch(args) {
|
|
1029
|
+
if (!args.model.startDate) {
|
|
1030
|
+
this.$showMessage('开始日期必填!')
|
|
1031
|
+
return
|
|
1032
|
+
}
|
|
1033
|
+
if (!args.model.endDate) {
|
|
1034
|
+
this.$showMessage('结束日期必填!')
|
|
1035
|
+
return
|
|
1036
|
+
}
|
|
1029
1037
|
if (this.data) {
|
|
1030
1038
|
this.$parent.$parent.$parent.data.startDate=this.$refs.paged.$refs.cri.model.startDate
|
|
1031
1039
|
this.$parent.$parent.$parent.data.endDate=this.$refs.paged.$refs.cri.model.endDate
|