From ab715fa84fac1ef6bd0450f59633f09b803a1ab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A3=E5=9C=A3=E5=8D=8E?= <752718920@qq.com> Date: Tue, 7 Jun 2022 00:32:46 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E5=BE=85=E4=BB=98=E9=87=91?= =?UTF-8?q?=E9=A2=9D=E5=92=8C=E5=BE=85=E6=94=B6=E9=87=91=E9=A2=9D=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jshERP-web/src/views/bill/PurchaseInList.vue | 2 +- jshERP-web/src/views/bill/SaleOutList.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jshERP-web/src/views/bill/PurchaseInList.vue b/jshERP-web/src/views/bill/PurchaseInList.vue index 14b92713..8885f5b7 100644 --- a/jshERP-web/src/views/bill/PurchaseInList.vue +++ b/jshERP-web/src/views/bill/PurchaseInList.vue @@ -225,7 +225,7 @@ }, { title: '待付金额', dataIndex: 'needInMoney',width:80, customRender:function (text,record,index) { - let needInMoney = record.discountLastMoney + record.otherMoney + let needInMoney = record.discountLastMoney + record.otherMoney - record.deposit return needInMoney? needInMoney.toFixed(2):'' } }, diff --git a/jshERP-web/src/views/bill/SaleOutList.vue b/jshERP-web/src/views/bill/SaleOutList.vue index e60f525a..37115fae 100644 --- a/jshERP-web/src/views/bill/SaleOutList.vue +++ b/jshERP-web/src/views/bill/SaleOutList.vue @@ -225,7 +225,7 @@ }, { title: '待收金额', dataIndex: 'needOutMoney',width:80, customRender:function (text,record,index) { - let needOutMoney = record.discountLastMoney + record.otherMoney + let needOutMoney = record.discountLastMoney + record.otherMoney - record.deposit return needOutMoney? needOutMoney.toFixed(2):'' } },