manage-client 4.0.61 → 4.0.62-2
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/SellReport/siyang/SYGasSaleFee.vue +178 -0
- package/src/components/webmeter/DrillData/LostContactAnalysisList.vue +5 -1
- package/src/components/webmeter/newwebmeter/NewException/MeterExceptionList.vue +39 -4
- package/src/filiale/jinbin/exportConfig.js +1110 -0
- package/src/filiale/jinbin/sale/businessquery/ChargeQuery.vue +1372 -0
- package/src/filiale/jinbin/sale.js +7 -0
- package/src/filiale/xinjiangdexin/EchartsBox.vue +13 -3
- package/src/filiale/xinjiangdexin/LostContactAnalysisListIndex.vue +689 -0
- package/src/filiale/xinjiangdexin/webmeterManage.js +2 -0
- package/src/reportManage.js +4 -0
- package/.gradle/8.5/checksums/checksums.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.5/fileChanges/last-build.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.5/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
package/package.json
CHANGED
|
@@ -0,0 +1,178 @@
|
|
|
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
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
|
|
6
|
+
<div class="row">
|
|
7
|
+
<div class="col-sm-2" >
|
|
8
|
+
<label class="font_normal_body" for="startDate">开始日期:</label>
|
|
9
|
+
<datepicker id="startDate" placeholder="开始日期" style="width: 60%"
|
|
10
|
+
v-model="model.startDate"
|
|
11
|
+
:value.sync="model.startDate"
|
|
12
|
+
:disabled-days-of-Week="[]"
|
|
13
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
14
|
+
:show-reset-button="reset">
|
|
15
|
+
</datepicker>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="col-sm-2" >
|
|
18
|
+
<label class="font_normal_body" for="endDate">结束日期:</label>
|
|
19
|
+
<datepicker id="endDate" placeholder="结束日期" style="width: 60%"
|
|
20
|
+
v-model="model.endDate"
|
|
21
|
+
:value.sync="model.endDate"
|
|
22
|
+
:disabled-days-of-Week="[]"
|
|
23
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
24
|
+
:show-reset-button="reset">
|
|
25
|
+
</datepicker>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="col-sm-2">
|
|
28
|
+
<label class="font_normal_body"> 公司 </label>
|
|
29
|
+
<right-tree @re-res="$parent.$parent.getRes"></right-tree>
|
|
30
|
+
</div>
|
|
31
|
+
<div class="col-sm-2">
|
|
32
|
+
<label class="font_normal_body"> 部门 </label>
|
|
33
|
+
<res-select restype='department'
|
|
34
|
+
is-mul="false"
|
|
35
|
+
@res-select="$parent.$parent.getdep"
|
|
36
|
+
:parentresid="$parent.$parent.depresid"
|
|
37
|
+
:initresid='$parent.$parent.depid'>
|
|
38
|
+
</res-select>
|
|
39
|
+
|
|
40
|
+
</div>
|
|
41
|
+
<div class="col-sm-2">
|
|
42
|
+
<label class="font_normal_body"> 人员 </label>
|
|
43
|
+
<res-select restype='user'
|
|
44
|
+
is-mul="false"
|
|
45
|
+
@res-select="$parent.$parent.getuser"
|
|
46
|
+
:parentresid="$parent.$parent.userresid"
|
|
47
|
+
:initresid='$parent.$parent.operatorid'>
|
|
48
|
+
</res-select>
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
<div class="span" style = "float:right;">
|
|
52
|
+
<button class="button_search" @click="$parent.$parent.searchData()">查询</button>
|
|
53
|
+
<report-print id='gasprice' top='1cm' left='0' width='100%' height='100%' :preview="true"></report-print>
|
|
54
|
+
<report-excel id='gasprice'></report-excel>
|
|
55
|
+
</div>
|
|
56
|
+
</div>
|
|
57
|
+
</criteria>
|
|
58
|
+
<div partial='list' v-el:handcollect id='gasprice' style="overflow-y: scroll">
|
|
59
|
+
<table class='tableprint' style="margin: 0px auto">
|
|
60
|
+
<thead>
|
|
61
|
+
<tr>
|
|
62
|
+
<th :colspan='$parent.spans' style="font-weight: normal; text-align: left;">
|
|
63
|
+
<h3 style="text-align: center">售气收费报表</h3>
|
|
64
|
+
</th>
|
|
65
|
+
</tr>
|
|
66
|
+
<tr>
|
|
67
|
+
<th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
|
|
68
|
+
开始时间:{{model.model.startDate}}
|
|
69
|
+
结束时间:{{ model.model.endDate }}
|
|
70
|
+
打印时间:{{{$parent.printTime}}}
|
|
71
|
+
</th>
|
|
72
|
+
</tr>
|
|
73
|
+
<tr>
|
|
74
|
+
<th :colspan='$parent.spans' style="font-weight: normal; text-align: center;">
|
|
75
|
+
<div>
|
|
76
|
+
<span v-show="$parent.orgname.trim()!=''">公司:{{$parent.orgname}}</span>
|
|
77
|
+
<span v-show="$parent.depname.trim()!=''"> 部门:{{$parent.depname}}</span>
|
|
78
|
+
<span v-show="$parent.operatorname.trim()!=''">人员:{{$parent.operatorname}}</span>
|
|
79
|
+
</div>
|
|
80
|
+
</th>
|
|
81
|
+
</tr>
|
|
82
|
+
</thead>
|
|
83
|
+
<tr>
|
|
84
|
+
<td :colspan='$parent.spans' class="noborder">
|
|
85
|
+
{{{ model.data.substring(26,model.data.length-8) }}}
|
|
86
|
+
</td>
|
|
87
|
+
</tr>
|
|
88
|
+
<tfoot>
|
|
89
|
+
<tr style="text-align: left">
|
|
90
|
+
<th :colspan='Math.floor($parent.spans/3)'>财务审核:</th>
|
|
91
|
+
<th :colspan='Math.floor($parent.spans/3)'>收款审核:</th>
|
|
92
|
+
<th :colspan='Math.floor($parent.spans/3)'>收款员:</th>
|
|
93
|
+
</tr>
|
|
94
|
+
</tfoot>
|
|
95
|
+
</table>
|
|
96
|
+
</div>
|
|
97
|
+
</criteria-paged>
|
|
98
|
+
</div>
|
|
99
|
+
</template>
|
|
100
|
+
|
|
101
|
+
<script>
|
|
102
|
+
import { DataModel } from 'vue-client'
|
|
103
|
+
import co from 'co'
|
|
104
|
+
export default {
|
|
105
|
+
title: '售气收费报表',
|
|
106
|
+
props: ['data'],
|
|
107
|
+
data () {
|
|
108
|
+
return {
|
|
109
|
+
printTime: this.$login.toStandardTimeString(),
|
|
110
|
+
depresid: [],
|
|
111
|
+
userresid: [],
|
|
112
|
+
f_orgid: this.$login.f.orgid,
|
|
113
|
+
f_depid: this.$login.f.depids,
|
|
114
|
+
f_operatorid: this.$login.f.id,
|
|
115
|
+
operatorid: [],
|
|
116
|
+
depid: [],
|
|
117
|
+
orgname: '',
|
|
118
|
+
depname: '',
|
|
119
|
+
operatorname: '',
|
|
120
|
+
orgCondtionStr: '1=1',
|
|
121
|
+
model: new DataModel('api/af-revenue/report/sy_GasSaleFee', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
|
|
122
|
+
f_orgid: 'this.model.f_orgid'}),
|
|
123
|
+
reportStr: null,
|
|
124
|
+
spans: 0
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
ready () {
|
|
128
|
+
this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
|
|
129
|
+
this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
|
|
130
|
+
},
|
|
131
|
+
methods: {
|
|
132
|
+
searchData () {
|
|
133
|
+
this.$refs.paged.$refs.criteria.search()
|
|
134
|
+
},
|
|
135
|
+
selfSearch (args) {
|
|
136
|
+
this.printTime = this.$login.toStandardTimeString()
|
|
137
|
+
let orgcondition = '1=1'
|
|
138
|
+
if (this.f_orgid && this.f_orgid[0]) {
|
|
139
|
+
orgcondition += ` and f_orgid in ('${this.f_orgid}')`
|
|
140
|
+
}
|
|
141
|
+
if (this.f_depid && this.f_depid[0]) {
|
|
142
|
+
orgcondition += ` and f_depid in ('${this.f_depid}')`
|
|
143
|
+
}
|
|
144
|
+
if(this.f_operatorid && this.f_operatorid[0]) {
|
|
145
|
+
orgcondition += ` and f_operatorid in ('${this.f_operatorid}')`
|
|
146
|
+
}
|
|
147
|
+
this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
|
|
148
|
+
this.$refs.paged.search(args)
|
|
149
|
+
},
|
|
150
|
+
getRes (obj) {
|
|
151
|
+
this.orgname = obj.res[0]
|
|
152
|
+
this.depresid = obj.resids
|
|
153
|
+
this.f_orgid = obj.resids
|
|
154
|
+
},
|
|
155
|
+
getdep (obj, val) {
|
|
156
|
+
this.depname = val[0]
|
|
157
|
+
this.userresid = obj
|
|
158
|
+
this.f_depid = obj
|
|
159
|
+
},
|
|
160
|
+
getuser ( obj, val) {
|
|
161
|
+
this.operatorname = val[0]
|
|
162
|
+
this.f_operatorid = obj
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
watch: {
|
|
166
|
+
'model.data' (val) {
|
|
167
|
+
this.spans = val.split('</tr>').map(item => item.split('</td>').length-1).reduce((x, y) => x > y ? x : y)
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
computed: {
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
</script>
|
|
174
|
+
<style scoped>
|
|
175
|
+
.noborder{
|
|
176
|
+
border: none;
|
|
177
|
+
}
|
|
178
|
+
</style>
|
|
@@ -281,7 +281,9 @@
|
|
|
281
281
|
<th style="text-align:center">
|
|
282
282
|
<nobr>启用日期</nobr>
|
|
283
283
|
</th>
|
|
284
|
-
|
|
284
|
+
<th style="text-align:center">
|
|
285
|
+
<nobr>最后通讯时间</nobr>
|
|
286
|
+
</th>
|
|
285
287
|
<th style="text-align:center">
|
|
286
288
|
<nobr>应报天数</nobr>
|
|
287
289
|
</th>
|
|
@@ -329,6 +331,7 @@
|
|
|
329
331
|
<td style="text-align:center"><nobr>{{row.f_meternumber}}</nobr></td>
|
|
330
332
|
<td style="text-align:center"><nobr>{{row.f_startuse_date}}</nobr></td>
|
|
331
333
|
|
|
334
|
+
<td style="text-align:center"><nobr>{{row.f_meteread_date}}</nobr></td>
|
|
332
335
|
<td style="text-align:center">{{row.ybdays}}</td>
|
|
333
336
|
<td style="text-align:center">{{row.sbdays}}</td>
|
|
334
337
|
<td style="text-align:center">
|
|
@@ -418,6 +421,7 @@
|
|
|
418
421
|
"f_gasproperties":"用气性质",
|
|
419
422
|
"f_meternumber":"表号",
|
|
420
423
|
"f_startuse_date":"启用日期",
|
|
424
|
+
"f_meteread_date": "最后通讯时间",
|
|
421
425
|
"ybdays":"应报天数",
|
|
422
426
|
"sbdays":"实报天数",
|
|
423
427
|
"max_interval_day":"最长失联天数",
|
|
@@ -61,6 +61,24 @@
|
|
|
61
61
|
<right-tree @re-res="$parent.$parent.getorg"
|
|
62
62
|
:initresid='$parent.$parent.org'></right-tree>
|
|
63
63
|
</div>
|
|
64
|
+
|
|
65
|
+
<div class="col-sm-2 form-group">
|
|
66
|
+
<label class="font_normal_body">客户类型</label>
|
|
67
|
+
<v-select :value.sync="model.f_user_type"
|
|
68
|
+
@change="$parent.$parent.userTypeChange()"
|
|
69
|
+
:options='$parent.$parent.usertypes' placeholder='请选择' v-model="model.f_user_type"
|
|
70
|
+
condition="f_user_type = '{}'"
|
|
71
|
+
close-on-select></v-select>
|
|
72
|
+
</div>
|
|
73
|
+
<div class="col-sm-2 form-group">
|
|
74
|
+
<label class="font_normal_body">用气性质</label>
|
|
75
|
+
<v-select :value.sync="model.f_gasproperties" v-model="model.f_gasproperties"
|
|
76
|
+
:options='$parent.$parent.gasproperties' placeholder='请选择'
|
|
77
|
+
condition="f_gasproperties = '{}'"
|
|
78
|
+
close-on-select></v-select>
|
|
79
|
+
</div>
|
|
80
|
+
|
|
81
|
+
|
|
64
82
|
<div class="col-sm-2 form-group">
|
|
65
83
|
<label class="font_normal_body"> 余额 </label>
|
|
66
84
|
<input type="number" style="width:30%" class="input_search" title="大于等于" v-model="model.f_balance_amount_small"
|
|
@@ -181,6 +199,12 @@
|
|
|
181
199
|
<th style="text-align:center">
|
|
182
200
|
<nobr>客户地址</nobr>
|
|
183
201
|
</th>
|
|
202
|
+
<th style="text-align:center">
|
|
203
|
+
<nobr>客户类型</nobr>
|
|
204
|
+
</th>
|
|
205
|
+
<th style="text-align:center">
|
|
206
|
+
<nobr>用气性质</nobr>
|
|
207
|
+
</th>
|
|
184
208
|
<th style="text-align:center">
|
|
185
209
|
<nobr>账户余额</nobr>
|
|
186
210
|
</th>
|
|
@@ -245,6 +269,9 @@
|
|
|
245
269
|
<td>
|
|
246
270
|
<nobr>{{row.address}}</nobr>
|
|
247
271
|
</td>
|
|
272
|
+
<td style="text-align:center">{{row.f_user_type}}</td>
|
|
273
|
+
<td style="text-align:center">{{row.f_gasproperties}}</td>
|
|
274
|
+
|
|
248
275
|
<td style="text-align:center">{{row.f_balance_amount}}</td>
|
|
249
276
|
<td style="text-align:center">{{row.f_user_phone}}</td>
|
|
250
277
|
<td style="text-align:center"><nobr>{{row.f_meternumber}}</nobr></td>
|
|
@@ -360,13 +387,14 @@
|
|
|
360
387
|
{label: '日', value: 'day'}
|
|
361
388
|
],
|
|
362
389
|
getfield:{
|
|
363
|
-
"f_userinfo_code":"客户编号", "f_user_name":"客户名称","f_residential_area":"小区", "address":"客户地址","f_balance_amount":"账户余额","f_user_phone":"联系电话",
|
|
390
|
+
"f_userinfo_code":"客户编号", "f_user_name":"客户名称","f_residential_area":"小区", "address":"客户地址","f_user_type":"客户类型","f_gasproperties":"用气性质","f_balance_amount":"账户余额","f_user_phone":"联系电话",
|
|
364
391
|
"f_meternumber":"表号","f_meter_brand":"气表品牌","f_hand_date":"抄表日期","f_insert_date":"最后一次通讯时间","f_electricity":"电池电量","f_batterylevel":"电池电压",
|
|
365
392
|
"f_signal":"信号强度","f_magneticInterference":"磁干扰异常","f_valvestate":"阀门状态","f_error_type":"异常类型","f_error_level":"异常级别","f_is_read":"处理状态","f_error_reason":"备注信息","f_orgname":"分公司"
|
|
366
393
|
},
|
|
367
394
|
outlets: [],
|
|
368
395
|
operator: [],
|
|
369
396
|
showdetail:false,
|
|
397
|
+
gasproperties:[],
|
|
370
398
|
rowdata:{},
|
|
371
399
|
filename: '',
|
|
372
400
|
criteriaShow: false,
|
|
@@ -404,6 +432,16 @@
|
|
|
404
432
|
this.orgCondtionStr = " and f_orgid = " + this.$login.f.orgid + " and f_error_type IS NOT NULL and f_error_level IS NOT NULL "
|
|
405
433
|
}
|
|
406
434
|
},
|
|
435
|
+
userTypeChange () {
|
|
436
|
+
this.gasproperties=[]
|
|
437
|
+
if(this.$refs.paged.$refs.cri.model !==null) {
|
|
438
|
+
this.$refs.paged.$refs.cri.model.f_gasproperties=''
|
|
439
|
+
this.gasproperties = this.$appdata.getParam(this.$refs.paged.$refs.cri.model.f_user_type[0])
|
|
440
|
+
}
|
|
441
|
+
else{
|
|
442
|
+
this.gasproperties =[{label: '全部', value: ''}]
|
|
443
|
+
}
|
|
444
|
+
},
|
|
407
445
|
initParams () {
|
|
408
446
|
let arr = []
|
|
409
447
|
this.$MagGetSaleParam.getGasbrand().forEach((item) => {
|
|
@@ -558,9 +596,6 @@
|
|
|
558
596
|
usertypes() {
|
|
559
597
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]
|
|
560
598
|
},
|
|
561
|
-
Gasproperties() {
|
|
562
|
-
return [{label: '全部', value: ''}, ...this.$appdata.getParam('用气性质')]
|
|
563
|
-
},
|
|
564
599
|
isread() {
|
|
565
600
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('处理状态')]
|
|
566
601
|
},
|