From 2ce4312c1621666b6597b71430af18d3d0e9a152 Mon Sep 17 00:00:00 2001 From: linfso Date: Thu, 11 Jul 2024 08:32:50 +0800 Subject: [PATCH] md --- .../emis/emisSettleBill/MergeBillForm.vue | 320 +----- .../emisSettleBill/SettleMainBillList.vue | 962 +++++++----------- .../SubBillConfirmByMoneyList.vue | 74 +- .../SubBillConfirmByMonthList.vue | 73 +- .../SubBillConfirmBySiteList.vue | 73 +- .../emisSettleSubBill/subBillMergeMgnt.vue | 72 +- 6 files changed, 682 insertions(+), 892 deletions(-) diff --git a/src/views/emis/emisSettleBill/MergeBillForm.vue b/src/views/emis/emisSettleBill/MergeBillForm.vue index 066f8315..d3c07689 100644 --- a/src/views/emis/emisSettleBill/MergeBillForm.vue +++ b/src/views/emis/emisSettleBill/MergeBillForm.vue @@ -41,304 +41,68 @@ show-summary :summary-method="getSummaries" > -
+
- + + 追加运单到此账单 + + 批量确认 - - - 确认不出账 - - - 置账单异常 - - - 取消确认 + @click="handleRemovceBillCode" + >从账单内删除运单 - - - - 导出 -
-
- - - 批量确认 - - - 确认不出账 - - - 置账单异常 - - - 取消确认 - - - -
- -
- - -
- 账单名称: - - 账单月: - -
-
- - - 合账 - - - - - 拆子账单 - - - - 导出 - -
-
- -
总票数:{{queryStatInfoMap?queryStatInfoMap.totalNum:0}}, - 总运费:{{queryStatInfoMap?queryStatInfoMap.totalBillFee:0}} + 总费用:{{queryStatInfoMap?queryStatInfoMap.totalBillFee:0}}
- - - - - - - - - - - - + - - - - - - - - - + + + + - + + + + - - - + + + + @@ -438,6 +202,7 @@ export default { getEmisSettleBill(this.id).then(response => { this.form = response.data; this.loading = false; + this.getSubBillList(this.form.settleBillNo); }); } else if(this.settleBillNo){ @@ -445,18 +210,36 @@ export default { getEmisSettleBill(this.settleBillNo).then(response => { this.form = response.data; this.loading = false; + this.getSubBillList(this.form.settleBillNo); }); }else{ - this.$modal.msgError("信息不存在"); + this.$modal.msgError("账单不存在"); this.$emit("on-cancel"); } }, + getSubBillList(settleBillNo) { + this.loading = true; + let qParam={ + settleBillNo:settleBillNo + } + listEmisSettleSubBill(qParam).then(response => { + this.emisSettleSubBillList = response.rows; + this.total = response.total; + this.loading = false; + }); + + // 查询统计 + // getQueryStatInfoMap(qParam).then(response => { + // this.queryStatInfoMap = response.data; + // }); + + }, initSubBillList() { this.loading = true; - + listEmisSettleSubBill(this.queryParams).then(response => { this.emisSettleSubBillList = response.rows; this.total = response.total; @@ -480,7 +263,6 @@ export default { return; } - if ( column.property === 'waybillDetail.billWeight' ) { diff --git a/src/views/emis/emisSettleBill/SettleMainBillList.vue b/src/views/emis/emisSettleBill/SettleMainBillList.vue index 56a745ec..51866db2 100644 --- a/src/views/emis/emisSettleBill/SettleMainBillList.vue +++ b/src/views/emis/emisSettleBill/SettleMainBillList.vue @@ -1,586 +1,357 @@