manage-client 3.3.122 → 3.3.123
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 +3 -3
- package/package.json +1 -1
- package/src/components/SellReport/YCGasSummary.vue +250 -0
- package/src/components/SellReport/YCMonthSummary.vue +282 -0
- package/src/components/SellReport/taizhou/ManageBusSummary.vue +238 -0
- package/src/components/sale/businessquery/CardHandplanQuery.vue +7 -0
- package/src/components/webmeter/operationValueRecord.vue +2 -2
- package/src/filiale/lixianV3/ChangeMeterQuery.vue +7 -1
- package/src/filiale/lixianV3/RecordInfoQuery.vue +1448 -0
- package/src/filiale/lixianV3/config/exportConfig.js +2 -1
- package/src/filiale/lixianV3/sale.js +3 -1
- package/src/filiale/taizhoukesi/FMYGasQuery.vue +837 -0
- package/src/filiale/taizhoukesi/SellReport/GasMeterBrand.vue +227 -0
- package/src/filiale/taizhoukesi/config/exportConfig.js +37 -38
- package/src/filiale/taizhoukesi/reportManage.js +9 -0
- package/src/filiale/taizhoukesi/sale.js +2 -1
- package/src/reportManage.js +12 -0
|
@@ -670,7 +670,8 @@ export default {
|
|
|
670
670
|
'f_operator': '人员',
|
|
671
671
|
'f_depname': '部门',
|
|
672
672
|
'f_orgname': '公司',
|
|
673
|
-
'
|
|
673
|
+
'f_using_base_old': '旧表底数',
|
|
674
|
+
'f_meter_base': '新表底数',
|
|
674
675
|
'f_balance_amount': '表上余额',
|
|
675
676
|
'leigougas': '累购气量',
|
|
676
677
|
'f_inputtor_old': '旧抄表员',
|
|
@@ -7,7 +7,7 @@ export default function () {
|
|
|
7
7
|
// 发票查询
|
|
8
8
|
Vue.component('invoice-details-query', (resolve) => { require(['./InvoiceDetailsQuery.vue'], resolve) })
|
|
9
9
|
// 业务查询
|
|
10
|
-
Vue.component('business-manage', (resolve) => {require(['./BusinessManage'], resolve)})
|
|
10
|
+
Vue.component('business-manage', (resolve) => { require(['./BusinessManage'], resolve) })
|
|
11
11
|
// 换表查询
|
|
12
12
|
Vue.component('change-meter-query', (resolve) => {
|
|
13
13
|
require(['./ChangeMeterQuery'], resolve)
|
|
@@ -16,4 +16,6 @@ export default function () {
|
|
|
16
16
|
Vue.component('gas-analysis-query', (resolve) => { require(['./GasAnalysisQuery'], resolve) })
|
|
17
17
|
// 用户缴费抄表查询
|
|
18
18
|
Vue.component('manage-payment-query', (resolve) => { require(['./paymentQuery'], resolve) })
|
|
19
|
+
// 综合档案信息查询
|
|
20
|
+
Vue.component('record-info-query', (resolve) => { require(['./RecordInfoQuery'], resolve) })
|
|
19
21
|
}
|