manage-client 3.3.221 → 3.3.223
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/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/package.json +1 -1
- package/src/components/sale/filesquery/RecordInfoQuery.vue +5 -0
- package/src/filiale/WEINAN/ManageSummaryReport.vue +6 -1
- package/src/filiale/yuncheng/GasInspection.vue +14 -0
- package/src/filiale/yuncheng/config/exportConfig.js +6 -0
- package/src/filiale/zhongyi/ChargeQuery.vue +1454 -0
- package/src/filiale/zhongyi/GasStatistics.vue +40 -25
- package/src/filiale/zhongyi/exportConfig.js +2 -0
- package/src/filiale/zhongyi/sale.js +4 -0
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -166,6 +166,11 @@
|
|
|
166
166
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_meter_number"
|
|
167
167
|
condition="f_meternumber = '{}'" placeholder='表号'>
|
|
168
168
|
</div>
|
|
169
|
+
<div class="col-sm-2 form-group">
|
|
170
|
+
<label class="font_normal_body">气表封号</label>
|
|
171
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_metertitles"
|
|
172
|
+
condition="f_metertitles = '{}'" placeholder='气表封号'>
|
|
173
|
+
</div>
|
|
169
174
|
<div class="col-sm-2 form-group">
|
|
170
175
|
<label class="font_normal_body">卡  号</label>
|
|
171
176
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_card_id"
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
:header="$parent.$parent.other"
|
|
53
53
|
:footer="$parent.$parent.footer"
|
|
54
54
|
sqlurl="api/af-revenue/logic/openapi/exportfile"
|
|
55
|
-
sql-name="
|
|
55
|
+
:sql-name="$parent.$parent.sqlName"
|
|
56
56
|
template-name='营收汇总报表'
|
|
57
57
|
:choose-col="true"></export-excel>
|
|
58
58
|
<print-data :sum-field="$parent.$parent.getfield" :model="$parent.model"
|
|
@@ -357,6 +357,7 @@ export default {
|
|
|
357
357
|
}),
|
|
358
358
|
gasproperties: [],
|
|
359
359
|
show: false,
|
|
360
|
+
sqlName: 'manage_chargeSummary',
|
|
360
361
|
rowdata: {},
|
|
361
362
|
areaList: [],
|
|
362
363
|
modelval: [],
|
|
@@ -470,12 +471,14 @@ export default {
|
|
|
470
471
|
if(this.f_is_area){
|
|
471
472
|
if (this.f_is_area == '是') {
|
|
472
473
|
this.isCompanyShow = true
|
|
474
|
+
this.sqlName = 'manage_chargeSummaryByArea'
|
|
473
475
|
this.model = new PagedList('api/af-revenue/sql/manage_chargeSummaryByArea', 20, {
|
|
474
476
|
startDate: 'this.model.startDate',
|
|
475
477
|
endDate: 'this.model.endDate',
|
|
476
478
|
condition2: 'this.model.condition2'
|
|
477
479
|
}, {f_collection: 0, f_gas: 0, f_money: 0,f_card_money:0,f_sell_num:0,f_table_num:0})
|
|
478
480
|
} else {
|
|
481
|
+
this.sqlName = 'manage_chargeSummary'
|
|
479
482
|
this.isCompanyShow = false
|
|
480
483
|
this.model = new PagedList('api/af-revenue/sql/manage_chargeSummary', 20, {
|
|
481
484
|
startDate: 'this.model.startDate',
|
|
@@ -487,6 +490,7 @@ export default {
|
|
|
487
490
|
isCompanyChange () {
|
|
488
491
|
if (this.f_is_company) {
|
|
489
492
|
if (this.f_is_company == '是') {
|
|
493
|
+
this.sqlName = 'manage_chargeSummaryByCompany'
|
|
490
494
|
this.isAreaShow = true
|
|
491
495
|
this.model = new PagedList('api/af-revenue/sql/manage_chargeSummaryByCompany', 20, {
|
|
492
496
|
startDate: 'this.model.startDate',
|
|
@@ -494,6 +498,7 @@ export default {
|
|
|
494
498
|
condition2: 'this.model.condition2'
|
|
495
499
|
}, {f_collection: 0, f_gas: 0, f_money: 0,f_card_money:0,f_sell_num:0,f_table_num:0})
|
|
496
500
|
} else {
|
|
501
|
+
this.sqlName = 'manage_chargeSummary'
|
|
497
502
|
this.isAreaShow = false
|
|
498
503
|
this.model = new PagedList('api/af-revenue/sql/manage_chargeSummary', 20, {
|
|
499
504
|
startDate: 'this.model.startDate',
|
|
@@ -238,6 +238,12 @@
|
|
|
238
238
|
<th><nobr>最后抄表日期</nobr></th>
|
|
239
239
|
<th><nobr>温度</nobr></th>
|
|
240
240
|
<th><nobr>压力</nobr></th>
|
|
241
|
+
<th><nobr>采集时间</nobr></th>
|
|
242
|
+
<th><nobr>标况流量</nobr></th>
|
|
243
|
+
<th><nobr>工况流量</nobr></th>
|
|
244
|
+
<th><nobr>标况总量</nobr></th>
|
|
245
|
+
<th><nobr>工况总量</nobr></th>
|
|
246
|
+
<th><nobr>上报余额</nobr></th>
|
|
241
247
|
<th><nobr>用气量</nobr></th>
|
|
242
248
|
<th><nobr>用气金额</nobr></th>
|
|
243
249
|
<th><nobr>欠费月数</nobr></th>
|
|
@@ -267,6 +273,14 @@
|
|
|
267
273
|
<th style="text-align: center;"><nobr>{{row.end_time}}</nobr></th>
|
|
268
274
|
<th style="text-align:center"><nobr>{{row.flowmetertemperature}}</nobr></th>
|
|
269
275
|
<th style="text-align:center"><nobr>{{row.flowmeterpressure}}</nobr></th>
|
|
276
|
+
|
|
277
|
+
<th style="text-align:center"><nobr>{{row.f_hand_date}}</nobr></th>
|
|
278
|
+
<th style="text-align:center"><nobr>{{row.standardconditionflow}}</nobr></th>
|
|
279
|
+
<th style="text-align:center"><nobr>{{row.operatingmodeflow}}</nobr></th>
|
|
280
|
+
<th style="text-align:center"><nobr>{{row.standardconditiontotal}}</nobr></th>
|
|
281
|
+
<th style="text-align:center"><nobr>{{row.operatingmodetotal}}</nobr></th>
|
|
282
|
+
<th style="text-align:center"><nobr>{{row.f_jval}}</nobr></th>
|
|
283
|
+
|
|
270
284
|
<th style="text-align: center;"><nobr>{{row.f_oughtamount}}</nobr></th>
|
|
271
285
|
<th style="text-align: center;"><nobr>{{row.f_oughtfee}}</nobr></th>
|
|
272
286
|
<th style="text-align: center;"><nobr>{{row.qianfei_month_num}}</nobr></th>
|
|
@@ -2036,6 +2036,12 @@ export default {
|
|
|
2036
2036
|
'f_meter_base': '表底数',
|
|
2037
2037
|
'flowmetertemperature': '温度',
|
|
2038
2038
|
'flowmeterpressure': '压力',
|
|
2039
|
+
'f_hand_date': '采集时间',
|
|
2040
|
+
'standardconditionflow': '标况流量',
|
|
2041
|
+
'operatingmodeflow': '工况流量',
|
|
2042
|
+
'standardconditiontotal': '标况总量',
|
|
2043
|
+
'operatingmodetotal': '工况总量',
|
|
2044
|
+
'f_jval': '上报余额',
|
|
2039
2045
|
'f_oughtamount': '用气量',
|
|
2040
2046
|
'f_oughtfee': '用气金额',
|
|
2041
2047
|
'qianfei_month_num': '欠费月数',
|