manage-client 4.0.67 → 4.0.68
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/BrandGasPriceGroup.vue +321 -0
- package/src/components/SellReport/PaymentMethod.vue +233 -263
- package/src/components/webmeter/instruction/NewQueryInstruct.vue +66 -57
- package/src/filiale/beifangshiye/GasPriceGroup.vue +336 -0
- package/src/filiale/beifangshiye/reportManage.js +9 -0
- package/src/filiale/ningjin/NewQueryInstruct.vue +63 -57
- package/src/filiale/shexian/NewQueryInstruct.vue +66 -57
- package/src/main.js +2 -0
- package/src/reportManage.js +5 -0
package/package.json
CHANGED
|
@@ -0,0 +1,321 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="basic-main" style="height: 100%">
|
|
3
|
+
<criteria-paged :model="model" :pager='false' v-ref:paged>
|
|
4
|
+
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
|
|
5
|
+
<p class="bg-info text-center" style="padding: 8px;">北方实业用气汇总</p>
|
|
6
|
+
<div class="form-group" v-if="!$parent.$parent.data.f_files_path"></div>
|
|
7
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
|
|
8
|
+
<div class="row">
|
|
9
|
+
<div class="col-sm-2 form-group" >
|
|
10
|
+
<label class="font_normal_body" for="startDate">开始日期:</label>
|
|
11
|
+
<datepicker id="startDate" placeholder="开始日期" style="width: 60%"
|
|
12
|
+
v-model="model.startDate"
|
|
13
|
+
:value.sync="model.startDate"
|
|
14
|
+
:disabled-days-of-Week="[]"
|
|
15
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
16
|
+
:show-reset-button="reset">
|
|
17
|
+
</datepicker>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="col-sm-2 form-group" >
|
|
20
|
+
<label class="font_normal_body" for="endDate">结束日期:</label>
|
|
21
|
+
<datepicker id="endDate" placeholder="结束日期" style="width: 60%"
|
|
22
|
+
v-model="model.endDate"
|
|
23
|
+
:value.sync="model.endDate"
|
|
24
|
+
:disabled-days-of-Week="[]"
|
|
25
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
26
|
+
:show-reset-button="reset">
|
|
27
|
+
</datepicker>
|
|
28
|
+
</div>
|
|
29
|
+
<res-select-group
|
|
30
|
+
:show-component="$parent.$parent.resshow"
|
|
31
|
+
:selectin="true" :initres="$parent.$parent.initres"
|
|
32
|
+
:cascade =true @re-res="$parent.$parent.getRes"
|
|
33
|
+
v-ref:sel>
|
|
34
|
+
</res-select-group>
|
|
35
|
+
|
|
36
|
+
</div>
|
|
37
|
+
<div class="span" style = "float:right;">
|
|
38
|
+
<button class="button_search" @click="$parent.$parent.searchData()">查询</button>
|
|
39
|
+
<report-print id='gasprice' top='3cm' left='0' width='100%' height='100%' :preview="true"></report-print>
|
|
40
|
+
<report-excel id='gasprice'></report-excel>
|
|
41
|
+
<div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,
|
|
42
|
+
'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
|
|
43
|
+
</div>
|
|
44
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
45
|
+
<div class="col-sm-2 form-group">
|
|
46
|
+
<label class="font_normal_body">气价类型</label>
|
|
47
|
+
<v-select :value.sync="model.pricetype" v-model="model.pricetype"
|
|
48
|
+
@change="$parent.$parent.pricetypechanged"
|
|
49
|
+
placeholder='气价类型' :options="$parent.$parent.pricetypes"
|
|
50
|
+
condition="sp.f_price_type = '{}'"
|
|
51
|
+
close-on-select v-ref:type>
|
|
52
|
+
</v-select>
|
|
53
|
+
</div>
|
|
54
|
+
<div class="col-sm-2 form-group">
|
|
55
|
+
<label class="font_normal_body">气价名称</label>
|
|
56
|
+
<v-select :value.sync="model.f_price_name"
|
|
57
|
+
v-model="model.f_price_name"
|
|
58
|
+
multiple
|
|
59
|
+
:options="$parent.$parent.getPricenames"
|
|
60
|
+
condition="sp.f_price_name in {}"
|
|
61
|
+
></v-select>
|
|
62
|
+
</div>
|
|
63
|
+
<!--<div class="col-sm-2 form-group">-->
|
|
64
|
+
<!--<label class="font_normal_body">收费状态</label>-->
|
|
65
|
+
<!--<v-select :value.sync="$parent.$parent.f_state" multiple-->
|
|
66
|
+
<!--v-model="$parent.$parent.f_state"-->
|
|
67
|
+
<!--:options='$parent.$parent.charge_state' placeholder='请选择'-->
|
|
68
|
+
<!--condition="f_state in {}"-->
|
|
69
|
+
<!--close-on-select></v-select>-->
|
|
70
|
+
<!--</div>-->
|
|
71
|
+
</div>
|
|
72
|
+
</div>
|
|
73
|
+
</criteria>
|
|
74
|
+
<div partial='list' v-el:handcollect id='gasprice' style="overflow-y: scroll">
|
|
75
|
+
<table class='tableprint' style="margin: 0px auto" v-if="!$parent.data.f_files_path">
|
|
76
|
+
<thead>
|
|
77
|
+
<tr>
|
|
78
|
+
<th colspan='9' style="font-weight: normal; text-align: left;">
|
|
79
|
+
<h3 style="text-align: center">北方实业用气汇总</h3>
|
|
80
|
+
</th>
|
|
81
|
+
</tr>
|
|
82
|
+
<tr>
|
|
83
|
+
<th colspan='8' style="font-weight: normal; text-align: center;">
|
|
84
|
+
开始时间:{{model.model.startDate}}
|
|
85
|
+
结束时间:{{ model.model.endDate }}
|
|
86
|
+
</th>
|
|
87
|
+
</tr>
|
|
88
|
+
<tr>
|
|
89
|
+
<th colspan='8' style="font-weight: normal; text-align: center;">
|
|
90
|
+
打印时间:{{{$parent.printTime}}}
|
|
91
|
+
</th>
|
|
92
|
+
</tr>
|
|
93
|
+
<tr>
|
|
94
|
+
<th colspan='8' style="font-weight: normal; text-align: center;">
|
|
95
|
+
<div>
|
|
96
|
+
<span v-show="$parent.orgname.trim()!=''">公司:{{$parent.orgname}}</span>
|
|
97
|
+
<span v-show="$parent.depname.trim()!=''"> 部门:{{$parent.depname}}</span>
|
|
98
|
+
<span v-show="$parent.operatorname.trim()!=''">人员:{{$parent.operatorname}}</span>
|
|
99
|
+
</div>
|
|
100
|
+
</th>
|
|
101
|
+
</tr>
|
|
102
|
+
</thead>
|
|
103
|
+
<tr>
|
|
104
|
+
<td colspan='12'>
|
|
105
|
+
{{{ model.data.substring(26,model.data.length-8) }}}
|
|
106
|
+
</td>
|
|
107
|
+
</tr>
|
|
108
|
+
<tfoot>
|
|
109
|
+
<tr style="text-align: left">
|
|
110
|
+
<th colspan='3'>财务审核:</th>
|
|
111
|
+
<th colspan='3'>收款审核:</th>
|
|
112
|
+
<th colspan='3'>收款员:</th>
|
|
113
|
+
</tr>
|
|
114
|
+
</tfoot>
|
|
115
|
+
</table>
|
|
116
|
+
{{{ $parent.reportStr}}}
|
|
117
|
+
</div>
|
|
118
|
+
</criteria-paged>
|
|
119
|
+
<modal :show.sync="show" v-ref:modal small backdrop="false">
|
|
120
|
+
<header slot="modal-header" class="modal-header">
|
|
121
|
+
<h4 class="modal-title">输入文件名称</h4>
|
|
122
|
+
</header>
|
|
123
|
+
<article slot="modal-body" class="modal-body">
|
|
124
|
+
<div class="form-group">
|
|
125
|
+
<input type="text" class="form-control" v-model="filename" placeholder='保存的文件名'>
|
|
126
|
+
</div>
|
|
127
|
+
</article>
|
|
128
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
129
|
+
<button v-show="show" type="button" class="btn btn-default" @click='close'>取消</button>
|
|
130
|
+
<button v-show="show" type="button" class="btn btn-success" @click='confirm(filename)'>确认</button>
|
|
131
|
+
</footer>
|
|
132
|
+
</modal>
|
|
133
|
+
</div>
|
|
134
|
+
</template>
|
|
135
|
+
|
|
136
|
+
<script>
|
|
137
|
+
import { DataModel } from 'vue-client'
|
|
138
|
+
import co from 'co'
|
|
139
|
+
|
|
140
|
+
let readySomething = async function (self) {
|
|
141
|
+
self.$refs.paged.$refs.criteria.model.startDate = self.$login.toStandardDateString() + ' 00:00:00'
|
|
142
|
+
self.$refs.paged.$refs.criteria.model.endDate = self.$login.toStandardDateString() + ' 23:59:59'
|
|
143
|
+
console.log(self.$login.f)
|
|
144
|
+
await self.$MagLoadParams.loadParam()
|
|
145
|
+
self.initParams()
|
|
146
|
+
self.$refs.paged.$refs.criteria.search()
|
|
147
|
+
}
|
|
148
|
+
let saveFile = function * (self) {
|
|
149
|
+
// 线验证文件是否重名
|
|
150
|
+
let count = yield self.$resetpost('api/af-revenue/sql/manageSingleTable',
|
|
151
|
+
{data: {tablename: 't_report_record', condition: `f_files_name = '${self.filename}'`}},
|
|
152
|
+
{resolveMsg: null, rejectMsg: null})
|
|
153
|
+
if (count.data.length > 0) {
|
|
154
|
+
self.$showAlert('无法保存,文件名重名', 'warning', 3000)
|
|
155
|
+
return
|
|
156
|
+
}
|
|
157
|
+
let saveBack = yield self.$resetpost('api/af-revenue/logic/saveReport', {f_files_content: self.$refs.paged.$els.handcollect.innerHTML,
|
|
158
|
+
f_files_name: self.filename, f_files_type: self.data.f_report_type, f_component_name: 'manage-bus-summary',
|
|
159
|
+
f_operator: this.$login.f.name, f_query_month: `${self.model.model.startDate}-${self.model.model.endDate}`,
|
|
160
|
+
f_outlets: this.$login.f.depname})
|
|
161
|
+
if (saveBack.data.status === 'succeed') {
|
|
162
|
+
self.show = false
|
|
163
|
+
self.filename = ''
|
|
164
|
+
// 后台保存完成,通知刷新
|
|
165
|
+
self.$dispatch('save-success', self.filename)
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
export default {
|
|
169
|
+
title: '气价分组汇总表',
|
|
170
|
+
props: ['data'],
|
|
171
|
+
data () {
|
|
172
|
+
return {
|
|
173
|
+
printTime: this.$login.toStandardTimeString(),
|
|
174
|
+
depresid: [],
|
|
175
|
+
userresid: [],
|
|
176
|
+
f_orgid: this.$login.f.orgid,
|
|
177
|
+
f_depid: this.$login.f.depids,
|
|
178
|
+
f_operatorid: this.$login.f.id,
|
|
179
|
+
operatorid: [],
|
|
180
|
+
depid: [],
|
|
181
|
+
orgname: '',
|
|
182
|
+
depname: '',
|
|
183
|
+
operatorname: '',
|
|
184
|
+
f_inputtor: [],
|
|
185
|
+
f_user_type: '',
|
|
186
|
+
criteriaShow: false,
|
|
187
|
+
orgCondtionStr: '1=1',
|
|
188
|
+
model: new DataModel('api/af-revenue/report/brandGasPriceGroup', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
|
|
189
|
+
f_orgid: 'this.model.f_orgid'}),
|
|
190
|
+
reportStr: null,
|
|
191
|
+
resshow: ['company', 'department'],
|
|
192
|
+
initres: {
|
|
193
|
+
org: [this.$login.f.orgid],
|
|
194
|
+
dep: [],
|
|
195
|
+
user: []
|
|
196
|
+
},
|
|
197
|
+
f_filialeid: this.$login.f.orgid,
|
|
198
|
+
show: false,
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
ready () {
|
|
202
|
+
readySomething(this).then(() => {
|
|
203
|
+
this.$emit('ready')
|
|
204
|
+
}).catch((error) => {
|
|
205
|
+
this.$emit('error', error)
|
|
206
|
+
})
|
|
207
|
+
},
|
|
208
|
+
methods: {
|
|
209
|
+
initParams() {
|
|
210
|
+
// 初始化气表品牌
|
|
211
|
+
let brandArr = []
|
|
212
|
+
this.$MagGetSaleParam.getGasbrand().forEach((item) => {
|
|
213
|
+
let temp = {}
|
|
214
|
+
temp.label = item.label
|
|
215
|
+
temp.value = item.value.f_meter_brand
|
|
216
|
+
brandArr.push(temp)
|
|
217
|
+
})
|
|
218
|
+
this.meterbrands = [{label: '全部', value: ''}, ...brandArr]
|
|
219
|
+
//初始化气表价格
|
|
220
|
+
this.prices = this.$MagGetSaleParam.getPrices()
|
|
221
|
+
},
|
|
222
|
+
hidden () {
|
|
223
|
+
this.criteriaShow = !this.criteriaShow
|
|
224
|
+
},
|
|
225
|
+
searchData () {
|
|
226
|
+
this.$refs.paged.$refs.criteria.search()
|
|
227
|
+
},
|
|
228
|
+
selfSearch (args) {
|
|
229
|
+
let orgcondition = args.condition + this.orgCondtionStr
|
|
230
|
+
|
|
231
|
+
this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
|
|
232
|
+
this.$refs.paged.search(args)
|
|
233
|
+
},
|
|
234
|
+
async getRes(condition,obj) {
|
|
235
|
+
this.orgCondtionStr = condition
|
|
236
|
+
this.orgname = obj.orgnames[0]
|
|
237
|
+
this.depname = obj.depnames[0]
|
|
238
|
+
},
|
|
239
|
+
// 根据文件路径获取储存的报表内容
|
|
240
|
+
getFileContent (path) {
|
|
241
|
+
this.$resetpost('api/af-revenue/logic/getReportFileContent', {f_files_path: path}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
242
|
+
this.reportStr = res.data.filecontent
|
|
243
|
+
this.model.state = '正确'
|
|
244
|
+
})
|
|
245
|
+
},
|
|
246
|
+
confirm () {
|
|
247
|
+
if (!this.filename || this.filename === '') {
|
|
248
|
+
this.$showAlert('无法保存,文件名不能为空', 'warning', 3000)
|
|
249
|
+
}
|
|
250
|
+
let saveGen = saveFile(this)
|
|
251
|
+
co(saveGen)
|
|
252
|
+
},
|
|
253
|
+
close () {
|
|
254
|
+
this.show = false
|
|
255
|
+
},
|
|
256
|
+
pricetypechanged () {
|
|
257
|
+
this.$refs.paged.$refs.criteria.model.f_price_name = []
|
|
258
|
+
},
|
|
259
|
+
// 将报表保存成文件
|
|
260
|
+
confirmReport () {
|
|
261
|
+
this.show = true
|
|
262
|
+
this.filename = this.data.f_report_name + this.$login.toStandardDateString()
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
watch: {
|
|
266
|
+
'data' (val) {
|
|
267
|
+
if (val.f_files_path) {
|
|
268
|
+
this.getFileContent(val.f_files_path)
|
|
269
|
+
} else {
|
|
270
|
+
this.reportStr = null
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
computed: {
|
|
275
|
+
getPricenames () {
|
|
276
|
+
let pricetype = this.$refs.paged.$refs.criteria.model.pricetype
|
|
277
|
+
if (this.$refs.paged.$refs.criteria.model !== null) {
|
|
278
|
+
let rs = []
|
|
279
|
+
let priceArr = []
|
|
280
|
+
if (pricetype.length > 0) {
|
|
281
|
+
let params = {
|
|
282
|
+
f_price_type: pricetype[0],
|
|
283
|
+
filter: this.f_filialeid,
|
|
284
|
+
prices: this.prices
|
|
285
|
+
}
|
|
286
|
+
this.$MagGetSaleParam.getPrice(params).forEach((item) => {
|
|
287
|
+
let temp = {}
|
|
288
|
+
temp.label = item.label
|
|
289
|
+
temp.value = item.value.f_price_name
|
|
290
|
+
priceArr.push(temp)
|
|
291
|
+
})
|
|
292
|
+
if (priceArr.length == 0) {
|
|
293
|
+
rs = [{label: '全部', value: ''}]
|
|
294
|
+
} else {
|
|
295
|
+
rs = [...priceArr]
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
if (rs.length === 0) {
|
|
299
|
+
console.log('rs读出来是空')
|
|
300
|
+
this.$refs.paged.$refs.criteria.model.f_price_name = ''
|
|
301
|
+
}
|
|
302
|
+
return rs
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
pricetypes () {
|
|
306
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('气价类型')]
|
|
307
|
+
},
|
|
308
|
+
metertypes () {
|
|
309
|
+
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('气表类型')]
|
|
310
|
+
},
|
|
311
|
+
payment () {
|
|
312
|
+
return [...this.$appdata.getParam('付款方式查询')]
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
</script>
|
|
317
|
+
<style scoped>
|
|
318
|
+
.noborder{
|
|
319
|
+
border: none;
|
|
320
|
+
}
|
|
321
|
+
</style>
|