manage-client 3.3.42 → 3.3.44
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/WebHandplanQuery.vue +2 -2
- package/src/components/webmeter/instruction/NewQueryInstruct.vue +27 -0
- package/src/filiale/jingwei/config/exportConfig.js +4 -7
- package/src/filiale/qianneng/QnAqzz.vue +6 -0
- package/src/filiale/qianneng/QnAqzzYsbb.vue +604 -0
- package/src/filiale/qianneng/QnAqzzYsmx.vue +653 -0
- package/src/filiale/qianneng/QnChaobiaomingxi.vue +20 -4
- package/src/filiale/qianneng/QnChaobiaoyhhz.vue +19 -2
- package/src/filiale/qianneng/QnChaobiaoyqxzhz.vue +19 -2
- package/src/filiale/qianneng/RecordInfoQuery.vue +8 -0
- package/src/filiale/qianneng/exportConfig.js +10 -1
- package/src/filiale/qianneng/reportManage.js +4 -0
- package/src/filiale/shexian/ChangeMeterQuery.vue +46 -9
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
9
9
|
<div class="row">
|
|
10
10
|
<res-select-group :show-component="['company']" :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
11
|
+
|
|
11
12
|
<div class="col-sm-2 form-group">
|
|
12
13
|
<label for="startDate" class="font_normal_body">审核日期起</label>
|
|
13
14
|
<datepicker id="startDate" placeholder="审核日期起" style="width:60%"
|
|
@@ -327,7 +328,7 @@
|
|
|
327
328
|
return {
|
|
328
329
|
other:[],
|
|
329
330
|
footer:[],
|
|
330
|
-
model: new PagedList('rs/sql/qnChaobiaomingxi', 20, {}, {f_gas: 0, f_money: 0}),
|
|
331
|
+
model: new PagedList('rs/sql/qnChaobiaomingxi', 20, {startDate: 'this.model.startDate', endDate: 'this.model.endDate', f_insideorgid:'this.model.f_insideorgid',f_insidemeter:'this.model.f_insidemeter'}, {f_gas: 0, f_money: 0}),
|
|
331
332
|
criteriaShow: false,
|
|
332
333
|
orgCondtionStr: '',
|
|
333
334
|
modelval: [],
|
|
@@ -378,6 +379,7 @@
|
|
|
378
379
|
allorgid:[],
|
|
379
380
|
f_filialeid: this.$login.f.f_orgid,
|
|
380
381
|
dypayment:[{label:"全部",value:""},{label:"银行代扣",value:"银行代扣",},{label:"现金缴费",value:"现金缴费",}],
|
|
382
|
+
f_insidemeter_tmp:'',
|
|
381
383
|
}
|
|
382
384
|
},
|
|
383
385
|
ready() {
|
|
@@ -459,8 +461,14 @@
|
|
|
459
461
|
return data
|
|
460
462
|
},
|
|
461
463
|
search(){
|
|
462
|
-
console.log("=====search====")
|
|
463
|
-
|
|
464
|
+
console.log("=====search====9999999")
|
|
465
|
+
this.$refs.paged.$refs.cri.model.f_insideorgid = this.f_filialeid;
|
|
466
|
+
if(this.$refs.paged.$refs.cri.model.f_meter_classify[0]) {
|
|
467
|
+
this.$refs.paged.$refs.cri.model.f_insidemeter = this.$refs.paged.$refs.cri.model.f_meter_classify[0];
|
|
468
|
+
}else{
|
|
469
|
+
this.$refs.paged.$refs.cri.model.f_insidemeter = 'all'
|
|
470
|
+
}
|
|
471
|
+
this.f_insidemeter_tmp = this.$refs.paged.$refs.cri.model.f_insidemeter;
|
|
464
472
|
this.$refs.paged.$refs.cri.search()
|
|
465
473
|
},
|
|
466
474
|
cancel(obj) {
|
|
@@ -529,6 +537,7 @@
|
|
|
529
537
|
selfSearch(args) {
|
|
530
538
|
console.log('args', args)
|
|
531
539
|
console.log('this.orgCondtionStr', this.orgCondtionStr)
|
|
540
|
+
|
|
532
541
|
if (!this.orgCondtionStr) {
|
|
533
542
|
args.condition = `${args.condition}` + " and tr.f_orgid = " + this.$login.f.orgid
|
|
534
543
|
} else {
|
|
@@ -657,7 +666,14 @@
|
|
|
657
666
|
},
|
|
658
667
|
|
|
659
668
|
getCondition() {
|
|
660
|
-
return {
|
|
669
|
+
return {
|
|
670
|
+
condition: this.condition2,
|
|
671
|
+
orderitem:this.orderitem,
|
|
672
|
+
startDate: this.$refs.paged.$refs.cri.model.startDate,
|
|
673
|
+
endDate: this.$refs.paged.$refs.cri.model.endDate,
|
|
674
|
+
f_insideorgid:this.f_filialeid,
|
|
675
|
+
f_insidemeter:this.f_insidemeter_tmp
|
|
676
|
+
}
|
|
661
677
|
},
|
|
662
678
|
getfield() {
|
|
663
679
|
let data = {}
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
return {
|
|
219
219
|
other:[],
|
|
220
220
|
footer:[],
|
|
221
|
-
model: new PagedList('rs/sql/qnChaobiaoyhhz', 20, {}, {f_gas: 0, f_money: 0}),
|
|
221
|
+
model: new PagedList('rs/sql/qnChaobiaoyhhz', 20, {startDate: 'this.model.startDate', endDate: 'this.model.endDate', f_insideorgid:'this.model.f_insideorgid',f_insidemeter:'this.model.f_insidemeter'}, {f_gas: 0, f_money: 0}),
|
|
222
222
|
criteriaShow: false,
|
|
223
223
|
orgCondtionStr: '',
|
|
224
224
|
modelval: [],
|
|
@@ -269,6 +269,7 @@
|
|
|
269
269
|
allorgid:[],
|
|
270
270
|
f_filialeid: this.$login.f.f_orgid,
|
|
271
271
|
dypayment:[{label:"全部",value:""},{label:"银行代扣",value:"银行代扣",},{label:"现金缴费",value:"现金缴费",}],
|
|
272
|
+
f_insidemeter_tmp:'',
|
|
272
273
|
}
|
|
273
274
|
},
|
|
274
275
|
ready() {
|
|
@@ -354,6 +355,15 @@
|
|
|
354
355
|
search(){
|
|
355
356
|
console.log("=====search====")
|
|
356
357
|
//this.$refs.paged.$refs.cri.search()
|
|
358
|
+
this.$refs.paged.$refs.cri.model.f_insideorgid = this.f_filialeid;
|
|
359
|
+
|
|
360
|
+
if(this.$refs.paged.$refs.cri.model.f_meter_classify[0]) {
|
|
361
|
+
this.$refs.paged.$refs.cri.model.f_insidemeter = this.$refs.paged.$refs.cri.model.f_meter_classify[0];
|
|
362
|
+
}else{
|
|
363
|
+
this.$refs.paged.$refs.cri.model.f_insidemeter = 'all'
|
|
364
|
+
}
|
|
365
|
+
this.f_insidemeter_tmp = this.$refs.paged.$refs.cri.model.f_insidemeter;
|
|
366
|
+
|
|
357
367
|
this.$refs.paged.$refs.cri.search()
|
|
358
368
|
},
|
|
359
369
|
cancel(obj) {
|
|
@@ -550,7 +560,14 @@
|
|
|
550
560
|
},
|
|
551
561
|
|
|
552
562
|
getCondition() {
|
|
553
|
-
return {
|
|
563
|
+
return {
|
|
564
|
+
condition: this.condition2,
|
|
565
|
+
orderitem:this.orderitem,
|
|
566
|
+
startDate: this.$refs.paged.$refs.cri.model.startDate,
|
|
567
|
+
endDate: this.$refs.paged.$refs.cri.model.endDate,
|
|
568
|
+
f_insideorgid:this.f_filialeid,
|
|
569
|
+
f_insidemeter:this.f_insidemeter_tmp
|
|
570
|
+
}
|
|
554
571
|
},
|
|
555
572
|
getfield() {
|
|
556
573
|
let data = {}
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
return {
|
|
190
190
|
other:[],
|
|
191
191
|
footer:[],
|
|
192
|
-
model: new PagedList('rs/sql/qnChaobiaoyqxzhz', 20, {}, {f_gas: 0, f_money: 0}),
|
|
192
|
+
model: new PagedList('rs/sql/qnChaobiaoyqxzhz', 20, {startDate: 'this.model.startDate', endDate: 'this.model.endDate', f_insideorgid:'this.model.f_insideorgid',f_insidemeter:'this.model.f_insidemeter'}, {f_gas: 0, f_money: 0}),
|
|
193
193
|
criteriaShow: false,
|
|
194
194
|
orgCondtionStr: '',
|
|
195
195
|
modelval: [],
|
|
@@ -240,6 +240,7 @@
|
|
|
240
240
|
allorgid:[],
|
|
241
241
|
f_filialeid: this.$login.f.f_orgid,
|
|
242
242
|
dypayment:[{label:"全部",value:""},{label:"银行代扣",value:"银行代扣",},{label:"现金缴费",value:"现金缴费",}],
|
|
243
|
+
f_insidemeter_tmp:'',
|
|
243
244
|
}
|
|
244
245
|
},
|
|
245
246
|
ready() {
|
|
@@ -323,6 +324,15 @@
|
|
|
323
324
|
search(){
|
|
324
325
|
console.log("=====search====")
|
|
325
326
|
//this.$refs.paged.$refs.cri.search()
|
|
327
|
+
this.$refs.paged.$refs.cri.model.f_insideorgid = this.f_filialeid;
|
|
328
|
+
|
|
329
|
+
if(this.$refs.paged.$refs.cri.model.f_meter_classify[0]) {
|
|
330
|
+
this.$refs.paged.$refs.cri.model.f_insidemeter = this.$refs.paged.$refs.cri.model.f_meter_classify[0];
|
|
331
|
+
}else{
|
|
332
|
+
this.$refs.paged.$refs.cri.model.f_insidemeter = 'all'
|
|
333
|
+
}
|
|
334
|
+
this.f_insidemeter_tmp = this.$refs.paged.$refs.cri.model.f_insidemeter;
|
|
335
|
+
|
|
326
336
|
this.$refs.paged.$refs.cri.search()
|
|
327
337
|
},
|
|
328
338
|
cancel(obj) {
|
|
@@ -519,7 +529,14 @@
|
|
|
519
529
|
},
|
|
520
530
|
|
|
521
531
|
getCondition() {
|
|
522
|
-
return {
|
|
532
|
+
return {
|
|
533
|
+
condition: this.condition2,
|
|
534
|
+
orderitem:this.orderitem,
|
|
535
|
+
startDate: this.$refs.paged.$refs.cri.model.startDate,
|
|
536
|
+
endDate: this.$refs.paged.$refs.cri.model.endDate,
|
|
537
|
+
f_insideorgid:this.f_filialeid,
|
|
538
|
+
f_insidemeter:this.f_insidemeter_tmp
|
|
539
|
+
}
|
|
523
540
|
},
|
|
524
541
|
getfield() {
|
|
525
542
|
let data = {}
|
|
@@ -625,6 +625,12 @@
|
|
|
625
625
|
<th>
|
|
626
626
|
<nobr>灶具信息</nobr>
|
|
627
627
|
</th>
|
|
628
|
+
<th>
|
|
629
|
+
<nobr>防盗卡号1</nobr>
|
|
630
|
+
</th>
|
|
631
|
+
<th>
|
|
632
|
+
<nobr>防盗卡号2</nobr>
|
|
633
|
+
</th>
|
|
628
634
|
<th>
|
|
629
635
|
<nobr>备注</nobr>
|
|
630
636
|
</th>
|
|
@@ -747,6 +753,8 @@
|
|
|
747
753
|
<td style="text-align: center;"><nobr>{{row.f_alarm_code}}</nobr></td>
|
|
748
754
|
<td style="text-align: center;"><nobr>{{row.f_maxdate}}</nobr></td>
|
|
749
755
|
<td style="text-align: center;"><nobr>{{row.f_devices_type}}</nobr></td>
|
|
756
|
+
<td style="text-align: center;"><nobr>{{row.f_defendcard}}</nobr></td>
|
|
757
|
+
<td style="text-align: center;"><nobr>{{row.f_defendcard_two}}</nobr></td>
|
|
750
758
|
<td style="text-align: center;"><nobr>{{row.f_comments}}</nobr></td>
|
|
751
759
|
</template>
|
|
752
760
|
<template partial='foot'>
|
|
@@ -34,7 +34,7 @@ export default{
|
|
|
34
34
|
'f_book_inputtor': '表册抄表员',
|
|
35
35
|
'f_userfiles_address': '安装地址', 'f_install_person': '安装人', 'f_gas_person': '通气人',
|
|
36
36
|
'f_meter_book_num': '抄表册编号', 'f_meter_book_sort': '抄表册顺序',
|
|
37
|
-
'f_balance_amount': '表剩余金额', 'f_times': '写卡次数',
|
|
37
|
+
'f_balance_amount': '表剩余金额', 'f_times': '写卡次数', 'f_defendcard': '防盗卡号1', 'f_defendcard_two': '防盗卡号2',
|
|
38
38
|
'f_fillcard_times': '补卡次数', 'f_sendsuccess': '表同步状态', 'f_isband': '微信绑定', 'f_cost_type': '缴费类型'
|
|
39
39
|
, 'f_bank_accopen': '银行户名', 'f_bank_name': '银行名称', 'f_bank_account': '银行账号',
|
|
40
40
|
'f_bank_idnumber': '银行身份证号', 'f_bank_pay_number': '缴费编号', 'f_maxdate': '换表时间', 'f_devices_type': '灶具信息', 'f_network_valve': '自动阀控'
|
|
@@ -216,5 +216,14 @@ export default{
|
|
|
216
216
|
'xz':'乡镇','jwh':'居委会','bjqdr':'报警器(非补贴项)当日','bjqlj':'报警器(非补贴项)累计','fbjsrgdr':'防爆金属软管当日',
|
|
217
217
|
'fbjsrglj':'防爆金属软管累计','zbfdr':'自闭阀当日','zbflj':'自闭阀累计'
|
|
218
218
|
},
|
|
219
|
+
qnAqzzYsbb:{
|
|
220
|
+
'ysry':'验收人员','qjfj':'期间复检','fjlj':'复检累计','qjsgys':'期间施工验收','sgyslj':'施工验收累计',
|
|
221
|
+
'qjhj':'期间合计','zlj':'总累计'
|
|
222
|
+
},
|
|
223
|
+
qnAqzzYsmx:{
|
|
224
|
+
'title':'标题','createtimegmt':'发起时间','originator':'发起人','modifiedtimegmt':'验收时间','modifyuser':'验收人',
|
|
225
|
+
'textfield_li9rszui':'用户编号','textfield_li9rszuj':'用户姓名',
|
|
226
|
+
'textfield_li9rszuo':'地址','matchedaofeng':'与收费比对结果'
|
|
227
|
+
},
|
|
219
228
|
}
|
|
220
229
|
|
|
@@ -68,6 +68,10 @@ export default function () {
|
|
|
68
68
|
Vue.component('qn-aqzz-xzhz', (resolve) => { require(['./QnAqzzXzhz'], resolve) })
|
|
69
69
|
//安全装置加装 乡镇居委会汇总
|
|
70
70
|
Vue.component('qn-aqzz-xzjwhhz', (resolve) => { require(['./QnAqzzXzjwhhz'], resolve) })
|
|
71
|
+
//安全装置加装 验收明细
|
|
72
|
+
Vue.component('qn-aqzz-ysmx', (resolve) => { require(['./QnAqzzYsmx'], resolve) })
|
|
73
|
+
//安全装置加装 验收报表
|
|
74
|
+
Vue.component('qn-aqzz-ysbb', (resolve) => { require(['./QnAqzzYsbb'], resolve) })
|
|
71
75
|
Vue.component('qn-aqzz', (resolve) => { require(['./QnAqzz'], resolve) })
|
|
72
76
|
// **************潜能自定义报表end***************
|
|
73
77
|
}
|
|
@@ -100,6 +100,22 @@
|
|
|
100
100
|
condition="f_meter_brand_old = '{}'"
|
|
101
101
|
close-on-select></v-select>
|
|
102
102
|
</div>
|
|
103
|
+
<div class="col-sm-2 form-group">
|
|
104
|
+
<label class="font_normal_body">新表型号</label>
|
|
105
|
+
<v-select :value.sync="model.f_meter_style"
|
|
106
|
+
v-model="model.f_meter_style"
|
|
107
|
+
:options='$parent.$parent.meterStyle' placeholder='请选择'
|
|
108
|
+
condition="f_meter_style = '{}'"
|
|
109
|
+
close-on-select></v-select>
|
|
110
|
+
</div>
|
|
111
|
+
<div class="col-sm-2 form-group">
|
|
112
|
+
<label class="font_normal_body">旧表型号</label>
|
|
113
|
+
<v-select :value.sync="model.f_meter_style_old"
|
|
114
|
+
v-model="model.f_meter_style_old"
|
|
115
|
+
:options='$parent.$parent.meterStyle' placeholder='请选择'
|
|
116
|
+
condition="f_meter_style_old = '{}'"
|
|
117
|
+
close-on-select></v-select>
|
|
118
|
+
</div>
|
|
103
119
|
<div class="col-sm-2 form-group">
|
|
104
120
|
<label class="font_normal_body">换表类型</label>
|
|
105
121
|
<v-select :value.sync="model.f_type"
|
|
@@ -523,6 +539,7 @@
|
|
|
523
539
|
other:[],
|
|
524
540
|
footer:[],
|
|
525
541
|
meterbrands: [],
|
|
542
|
+
meterStyle: [],
|
|
526
543
|
pricenames: [],
|
|
527
544
|
model: new PagedList('rs/sql/changeMeterQuery', 20, {orderitem: this.orderitem?'"' + this.orderitem + ' "':`'f_operate_date desc'`}, {f_balance_amount: 0,f_changemeter_fee: 0,f_remanent_money:0,f_remanent_gas:0,hushu:0}),
|
|
528
545
|
criteriaShow: false,
|
|
@@ -600,15 +617,35 @@
|
|
|
600
617
|
this.other.push(otherInData);
|
|
601
618
|
},
|
|
602
619
|
async initParams() {
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
620
|
+
// 初始化气表品牌
|
|
621
|
+
let brandArr = []
|
|
622
|
+
await this.$MagGetSaleParam.getGasbrand().forEach((item) => {
|
|
623
|
+
let temp = {}
|
|
624
|
+
temp.label = item.label
|
|
625
|
+
temp.value = item.value.f_meter_brand
|
|
626
|
+
brandArr.push(temp)
|
|
627
|
+
})
|
|
628
|
+
this.meterbrands = [{label: '全部', value: ''}, ...brandArr]
|
|
629
|
+
// 获取气表型号
|
|
630
|
+
let data = {
|
|
631
|
+
tablename: `t_gasmodel`,
|
|
632
|
+
items: 'distinct f_meter_style',
|
|
633
|
+
condition: `1=1`,
|
|
634
|
+
orderitem: 'f_meter_style desc'
|
|
635
|
+
}
|
|
636
|
+
let res = await this.$resetpost('rs/sql/manage_singleTable', {data: data}, {rejectMsg: '获取表型号出错', resolveMsg: null})
|
|
637
|
+
let meStu = []
|
|
638
|
+
if (res.data) {
|
|
639
|
+
res.data.forEach((itemRes) => {
|
|
640
|
+
let tempTy = {}
|
|
641
|
+
tempTy.label = itemRes.f_meter_style
|
|
642
|
+
tempTy.value = itemRes.f_meter_style
|
|
643
|
+
meStu.push(tempTy)
|
|
644
|
+
})
|
|
645
|
+
}
|
|
646
|
+
console.log('------------打印数据---------------')
|
|
647
|
+
console.log(res)
|
|
648
|
+
this.meterStyle = [{label: '全部', value: ''}, ...meStu]
|
|
612
649
|
},
|
|
613
650
|
async selfSearch(args) {
|
|
614
651
|
if (this.data) {
|