-
已选应收款项明细
@@ -242,7 +244,7 @@
{{ scope.row.contractNo }}
-
+
{{ scope.row.VIN }}
@@ -257,7 +259,7 @@
{{ scope.row.customerPhone }}
-
+
{{ scope.row.receivablesName }}
@@ -267,14 +269,14 @@
{{ scope.row.currentReceivableMoney }}
-
+
-
+
-
+
-
+ {{ scope.row.surplusReceivable }}
@@ -437,6 +439,13 @@ export default {
this.balanceCopy = this.formobj.collectionMoney
}
},
+ changeMoney(row) {
+ if (row.subscriptionMoney !== '') {
+ row.surplusReceivable = parseFloat(row.currentReceivableMoney) - parseFloat(row.subscriptionMoney)
+ } else {
+ row.surplusReceivable = ''
+ }
+ },
changeSubscriptionMoney() {
let subscriptionMoney = '0'
for (var i = 0; i < this.formobj.finSelectedReceivablesDetaileds.length; i++) {
@@ -612,6 +621,7 @@ export default {
currentReceivableMoney: row.currentReceivableMoney,
lastSubscriptionMoney: '',
subscriptionMoney: '',
+ surplusReceivable: '',
subscriptionDate: '',
collSid: '',
receivablesSid: row.sid,
@@ -725,6 +735,9 @@ export default {
diff --git a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentConfirmation/acknowledgementReceiptInfo.vue b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentConfirmation/acknowledgementReceiptInfo.vue
index bd46140ef1..0058d3cf3c 100644
--- a/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentConfirmation/acknowledgementReceiptInfo.vue
+++ b/anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentConfirmation/acknowledgementReceiptInfo.vue
@@ -8,7 +8,7 @@