manage-client 4.0.82-1 → 4.0.82-bf
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/build/dev-server.js +7 -7
- package/package.json +1 -1
- package/src/components/SellReport/siyang/SYGasSaleFee.vue +178 -178
- package/src/filiale/beifangshiye/ChangeMeterQuery.vue +699 -0
- package/src/filiale/beifangshiye/config/DefaultPrint.js +6 -0
- package/src/filiale/beifangshiye/config/exportConfig.js +2705 -0
- package/src/filiale/beifangshiye/config/tableConfig.js +59 -0
- package/src/filiale/beifangshiye/sale.js +9 -0
- package/src/main.js +1 -2
- package/src/filiale/jinbin/exportConfig.js +0 -1110
- package/src/filiale/jinbin/sale/businessquery/ChargeQuery.vue +0 -1372
- package/src/filiale/jinbin/sale.js +0 -7
package/build/dev-server.js
CHANGED
|
@@ -11,17 +11,17 @@ var compiler = webpack(config)
|
|
|
11
11
|
// Define HTTP proxies to your custom API backend
|
|
12
12
|
// https://github.com/chimurai/http-proxy-middleware
|
|
13
13
|
// var bendi = 'http://127.0.0.1:8089/manage', fuwu = 'http://36.103.224.217:6300/'
|
|
14
|
-
var shaoguan = 'http://
|
|
15
|
-
var qtx = 'http://
|
|
14
|
+
var shaoguan = 'http://218.93.226.210:31467/'
|
|
15
|
+
var qtx = 'http://218.93.226.210:31467/'
|
|
16
16
|
// var bendi = 'http://220.194.141.253:8600/'
|
|
17
17
|
// var bendi = 'http://203.57.101.233:9001'
|
|
18
18
|
// var bendi = 'http://172.168.1.11:9001/'
|
|
19
|
-
// var bendi = 'http://
|
|
19
|
+
// var bendi = 'http://111.229.34.22:31467/'
|
|
20
20
|
// var bendi = 'http://121.36.106.17:8400/'
|
|
21
21
|
// var fuwu = 'http://203.57.101.233:9001'
|
|
22
|
-
var bendi = 'http://
|
|
22
|
+
var bendi = 'http://111.229.34.22:31467/'
|
|
23
23
|
// var bendi = 'http://119.187.112.234:8400/'
|
|
24
|
-
var wode = 'http://
|
|
24
|
+
var wode = 'http://111.229.34.22:31467/'
|
|
25
25
|
// 192.168.
|
|
26
26
|
// var str = 'http://127.0.0.1:8080/manage', str2 = 'http://192.168.50.199:8300'
|
|
27
27
|
// var str = 'http://192.168.10.233:8300', str2 = 'http://192.168.10.14:8300'
|
|
@@ -30,7 +30,7 @@ var proxyTable = {
|
|
|
30
30
|
target: bendi
|
|
31
31
|
},
|
|
32
32
|
'/dataManage': {
|
|
33
|
-
target: 'http://
|
|
33
|
+
target: 'http://111.229.34.22:31467/'
|
|
34
34
|
|
|
35
35
|
},
|
|
36
36
|
'/api/af-revenue/sql/compreQuery': {
|
|
@@ -40,7 +40,7 @@ var proxyTable = {
|
|
|
40
40
|
target: 'http://127.0.0.1:9026/'
|
|
41
41
|
},
|
|
42
42
|
'/api': {
|
|
43
|
-
target: 'http://
|
|
43
|
+
target: 'http://111.229.34.22:31467/'
|
|
44
44
|
|
|
45
45
|
},
|
|
46
46
|
'/rs/sql/chargeQuery_by_gasproperties': {
|
package/package.json
CHANGED
|
@@ -1,178 +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>
|
|
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>
|