manage-client 3.2.156 → 3.2.158
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 +4 -2
- package/src/components/SellReport/chaostyle.vue +493 -0
- package/src/components/SellReport/charge_handfee.vue +176 -0
- package/src/components/SellReport/charge_handmeter.vue +176 -0
- package/src/components/SellReport/charge_handmoney.vue +176 -0
- package/src/components/SellReport/chargestyle.vue +228 -0
- package/src/components/SellReport/shoufeistyle.vue +449 -0
- package/src/components/sale/config/exportConfig.js +14 -0
- package/src/filiale/shangluo/ChargeDayReport.vue +454 -0
- package/src/filiale/shangluo/config/DefaultPrint.js +6 -0
- package/src/filiale/shangluo/config/exportConfig.js +1078 -0
- package/src/filiale/shangluo/reportManage.js +9 -0
- package/src/reportManage.js +28 -0
- package/static/fonts/font.css +1 -1
- package/static/fonts//351/230/277/351/207/214/346/261/211/344/273/252/346/231/272/350/203/275/351/273/221/344/275/{223.TTF → 223.ttf} +0 -0
- package/yarn-error.log +7659 -0
package/src/reportManage.js
CHANGED
|
@@ -620,6 +620,34 @@ export default function (filiale) {
|
|
|
620
620
|
Vue.component('tl_handmoney', (resolve) => {
|
|
621
621
|
require(['./components/SellReport/tl_handmoney'], resolve)
|
|
622
622
|
})
|
|
623
|
+
// 抄表员气量统计表
|
|
624
|
+
Vue.component('tl_handmoney', (resolve) => {
|
|
625
|
+
require(['./components/SellReport/tl_handmoney'], resolve)
|
|
626
|
+
})
|
|
627
|
+
// 气价划价表
|
|
628
|
+
Vue.component('charge_handmoney', (resolve) => {
|
|
629
|
+
require(['./components/SellReport/charge_handmoney'], resolve)
|
|
630
|
+
})
|
|
631
|
+
// 气价自动划价表
|
|
632
|
+
Vue.component('charge_handfee', (resolve) => {
|
|
633
|
+
require(['./components/SellReport/charge_handfee'], resolve)
|
|
634
|
+
})
|
|
635
|
+
// 抄表用气性质表
|
|
636
|
+
Vue.component('charge_handmeter', (resolve) => {
|
|
637
|
+
require(['./components/SellReport/charge_handmeter'], resolve)
|
|
638
|
+
})
|
|
639
|
+
// 抄表划价查询明细
|
|
640
|
+
Vue.component('chaostyle', (resolve) => {
|
|
641
|
+
require(['./components/SellReport/chaostyle'], resolve)
|
|
642
|
+
})
|
|
643
|
+
// 收费划价查询明细
|
|
644
|
+
Vue.component('shoufeistyle', (resolve) => {
|
|
645
|
+
require(['./components/SellReport/shoufeistyle'], resolve)
|
|
646
|
+
})
|
|
647
|
+
// 气价分组统计表
|
|
648
|
+
Vue.component('chargestyle', (resolve) => {
|
|
649
|
+
require(['./components/SellReport/chargestyle'], resolve)
|
|
650
|
+
})
|
|
623
651
|
if (filiale) {
|
|
624
652
|
let filialeComp = require(`./filiale/${filiale}/reportManage`).specialComp
|
|
625
653
|
Vue.filialeInfo = Vue.prototype.$filialeInfo = filiale
|
package/static/fonts/font.css
CHANGED