manage-client 3.3.238 → 3.3.240
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/config/exportConfig.js +4 -1
- package/src/components/webmeter/report/ReportList.vue +19 -0
- package/src/filiale/hantou/RecordInfoQuery.vue +1512 -0
- package/src/filiale/hantou/sale.js +4 -0
- package/src/filiale/qingtongxia/RecordInfoQuery.vue +2 -2
- package/src/filiale/qingtongxia/config/exportConfig.js +1 -1
- package/src/filiale/yangchun/ChangeMeterQuery.vue +6 -0
- package/src/filiale/yangchun/ChargeQuery.vue +1454 -0
- package/src/filiale/yangchun/HandplanQuery.vue +18 -0
- package/src/filiale/yangchun/config/exportConfig.js +9 -2
- package/src/filiale/yangchun/sale.js +8 -0
- package/src/main.js +1 -1
- package/src/filiale/kelai/WebmeterQuery.vue +0 -77
|
@@ -497,6 +497,15 @@
|
|
|
497
497
|
<th>
|
|
498
498
|
<nobr>公司</nobr>
|
|
499
499
|
</th>
|
|
500
|
+
<th>
|
|
501
|
+
<nobr>抵扣单价</nobr>
|
|
502
|
+
</th>
|
|
503
|
+
<th>
|
|
504
|
+
<nobr>本次抵扣金额</nobr>
|
|
505
|
+
</th>
|
|
506
|
+
<th>
|
|
507
|
+
<nobr>剩余抵扣金额</nobr>
|
|
508
|
+
</th>
|
|
500
509
|
<th>
|
|
501
510
|
<nobr>附件</nobr>
|
|
502
511
|
</th>
|
|
@@ -653,6 +662,15 @@
|
|
|
653
662
|
<td style="text-align: center;">
|
|
654
663
|
<nobr>{{ row.f_orgname }}</nobr>
|
|
655
664
|
</td>
|
|
665
|
+
<td style="text-align: center;">
|
|
666
|
+
<nobr>{{ row.f_gas_type }}</nobr>
|
|
667
|
+
</td>
|
|
668
|
+
<td style="text-align: center;">
|
|
669
|
+
<nobr>{{ row.f_current_deduct_amount }}</nobr>
|
|
670
|
+
</td>
|
|
671
|
+
<td style="text-align: center;">
|
|
672
|
+
<nobr>{{ row.f_remaining_deduct_amount }}</nobr>
|
|
673
|
+
</td>
|
|
656
674
|
<td style="text-align: center;">
|
|
657
675
|
<nobr>
|
|
658
676
|
<button class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.view(row)">
|
|
@@ -252,7 +252,10 @@ export default {
|
|
|
252
252
|
'f_stair3fee': '三阶气费',
|
|
253
253
|
'f_inputtor': '抄表员',
|
|
254
254
|
'f_residential_area': '小区',
|
|
255
|
-
'f_serial_number': '业务单号'
|
|
255
|
+
'f_serial_number': '业务单号',
|
|
256
|
+
'f_gas_type': '抵扣单价',
|
|
257
|
+
'f_current_deduct_amount': '本次抵扣金额',
|
|
258
|
+
'f_remaining_deduct_amount': '剩余抵扣金额'
|
|
256
259
|
},
|
|
257
260
|
loginQueryConfig: {
|
|
258
261
|
'userid': '登录人编号', 'username': '登录人名称', 'logindate': '登录时间', 'type': '类型'
|
|
@@ -664,6 +667,7 @@ export default {
|
|
|
664
667
|
'f_changemeter_fee': '换表费',
|
|
665
668
|
'f_meternumber_old': '旧表号',
|
|
666
669
|
'f_meternumber': '新表号',
|
|
670
|
+
'f_meter_base_old': '旧表底数',
|
|
667
671
|
'f_initial_base': '新表初始底数',
|
|
668
672
|
'f_meter_brand_old': '旧气表品牌',
|
|
669
673
|
'f_meter_brand': '新气表品牌',
|
|
@@ -835,7 +839,10 @@ export default {
|
|
|
835
839
|
'f_stair3amount': '三阶气量',
|
|
836
840
|
'f_stair3price': '三阶单价',
|
|
837
841
|
'f_stair3fee': '三阶气费',
|
|
838
|
-
'f_rest_date': '所属年月'
|
|
842
|
+
'f_rest_date': '所属年月',
|
|
843
|
+
'f_gas_type': '抵扣单价',
|
|
844
|
+
'f_current_deduct_amount': '本次抵扣金额',
|
|
845
|
+
'f_remaining_deduct_amount': '剩余抵扣金额'
|
|
839
846
|
},
|
|
840
847
|
handplanInfoConfig: {
|
|
841
848
|
'f_userinfo_code': '用户号',
|
|
@@ -21,4 +21,12 @@ export default function () {
|
|
|
21
21
|
Vue.component('handplan-query', (resolve) => {
|
|
22
22
|
require(['./HandplanQuery'], resolve)
|
|
23
23
|
})
|
|
24
|
+
// 换表查询
|
|
25
|
+
Vue.component('change-meter-query', (resolve) => {
|
|
26
|
+
require(['./ChangeMeterQuery'], resolve)
|
|
27
|
+
})
|
|
28
|
+
// 收费查询
|
|
29
|
+
Vue.component('charge-query', (resolve) => {
|
|
30
|
+
require(['./ChargeQuery'], resolve)
|
|
31
|
+
})
|
|
24
32
|
}
|
package/src/main.js
CHANGED
|
@@ -6,7 +6,7 @@ import { all } from 'vue-client'
|
|
|
6
6
|
import { system } from 'system-clients'
|
|
7
7
|
import { ldap } from 'ldap-clients'
|
|
8
8
|
import saleManage from './saleManage'
|
|
9
|
-
import ShanXianSaleManage from './filiale/
|
|
9
|
+
import ShanXianSaleManage from './filiale/hantou/sale'
|
|
10
10
|
import webmeterManage from './webmeterManage'
|
|
11
11
|
import reportManage from './reportManage'
|
|
12
12
|
import newmanage from './newmanage'
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<tab-button class="foot_tabset" :active="-1">
|
|
3
|
-
<tabs header="指令查询" v-if="permission('指令查询')">
|
|
4
|
-
<instruct-manage v-if="show.includes('指令查询')"></instruct-manage>
|
|
5
|
-
</tabs>
|
|
6
|
-
<tabs header="历史指令查询" v-if="permission('历史指令查询')">
|
|
7
|
-
<instruct-manage-history v-if="show.includes('历史指令查询')"></instruct-manage-history>
|
|
8
|
-
</tabs>
|
|
9
|
-
<tabs header="上报查询" v-if="permission('上报查询')">
|
|
10
|
-
<report-list v-if="show.includes('上报查询')"></report-list>
|
|
11
|
-
</tabs>
|
|
12
|
-
<tabs header="结算查询" v-if="permission('结算查询')">
|
|
13
|
-
<report-data-query v-if="show.includes('结算查询')"></report-data-query>
|
|
14
|
-
</tabs>
|
|
15
|
-
<tabs header="缴费查询" v-if="permission('缴费查询')">
|
|
16
|
-
<recharge-instruct-query v-if="show.includes('缴费查询')"></recharge-instruct-query>
|
|
17
|
-
</tabs>
|
|
18
|
-
<tabs header="异常查询" v-if="permission('异常查询')">
|
|
19
|
-
<meter-exception-list v-if="show.includes('异常查询')"></meter-exception-list>
|
|
20
|
-
</tabs>
|
|
21
|
-
<tabs header="用户失联" v-if="permission('用户失联')">
|
|
22
|
-
<user-lost-contact-analysis v-if="show.includes('用户失联')"></user-lost-contact-analysis>
|
|
23
|
-
</tabs>
|
|
24
|
-
<tabs header="失联查询" v-if="permission('失联查询')">
|
|
25
|
-
<lost-contact-analysis-list v-if="show.includes('失联查询')"></lost-contact-analysis-list>
|
|
26
|
-
</tabs>
|
|
27
|
-
<tabs header="用气查询" v-if="!newWebHand && permission('用气查询')">
|
|
28
|
-
<use-gas-statistics v-if="show.includes('用气查询')"></use-gas-statistics>
|
|
29
|
-
</tabs>
|
|
30
|
-
<tabs header="新用气查询" v-if="permission('用气查询')">
|
|
31
|
-
<new-use-gas-statistics v-if="show.includes('用气查询')"></new-use-gas-statistics>
|
|
32
|
-
</tabs>
|
|
33
|
-
<tabs header="未用气查询" v-if="permission('未用气查询')">
|
|
34
|
-
<get-no-meteread-query v-if="show.includes('未用气查询')"></get-no-meteread-query>
|
|
35
|
-
</tabs>
|
|
36
|
-
<tabs header="物联网表结算分析" v-if="!newWebHand && permission('物联网表结算分析')">
|
|
37
|
-
<webmeter-settlement-analysis v-if="show.includes('物联网表结算分析')"></webmeter-settlement-analysis>
|
|
38
|
-
</tabs>
|
|
39
|
-
<tabs header="物联网表结算分析" v-if="newWebHand &&permission('物联网表结算分析')">
|
|
40
|
-
<new-webmeter-settlement-analysis v-if="show.includes('物联网表结算分析')"></new-webmeter-settlement-analysis>
|
|
41
|
-
</tabs>
|
|
42
|
-
<tabs header="物联用户月度结算查询" v-if="permission('物联用户月度结算查询')">
|
|
43
|
-
<webhand-month-gas v-if="show.includes('物联用户月度结算查询')"></webhand-month-gas>
|
|
44
|
-
</tabs>
|
|
45
|
-
</tab-button>
|
|
46
|
-
|
|
47
|
-
</template>
|
|
48
|
-
|
|
49
|
-
<script>
|
|
50
|
-
import TabButton from '../../components/sale/common/TabButton'
|
|
51
|
-
import Tabs from '../../components/sale/common/Tabs'
|
|
52
|
-
|
|
53
|
-
export default {
|
|
54
|
-
title: '物联查询',
|
|
55
|
-
data () {
|
|
56
|
-
return {
|
|
57
|
-
newWebHand: this.$appdata.getSingleValue('新抄表'),
|
|
58
|
-
show: []
|
|
59
|
-
}
|
|
60
|
-
},
|
|
61
|
-
components: {Tabs, TabButton},
|
|
62
|
-
methods: {
|
|
63
|
-
permission (name) {
|
|
64
|
-
// 保留是为了后面可能也会和综合查询一样加权限
|
|
65
|
-
if (this.$login.r.find(value => value === '物联查询') || name === '历史指令查询') {
|
|
66
|
-
if (!this.$login.r.find(value => value === name)) {
|
|
67
|
-
return false
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
return true
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
</script>
|
|
75
|
-
|
|
76
|
-
<style scoped>
|
|
77
|
-
</style>
|