|
@@ -615,8 +615,15 @@ export default {
|
|
|
this.currect=false
|
|
|
getselectctcontractno({customerName:this.modification[0].customerName,contractNo:this.modification[0].contractNo}).toPromise()
|
|
|
.then((response) => {
|
|
|
-
|
|
|
that.carryovercontractnolist=response
|
|
|
+ for (var i = 0; i < that.carryovercontractnolist.length; i++) {
|
|
|
+ if(that.carryovercontractnolist[i].amountNotPayable>0){
|
|
|
+ that.carryovercontractnolist[i].closeaccountstatus="待结算"
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ that.carryovercontractnolist[i].closeaccountstatus="已结算"
|
|
|
+ }
|
|
|
+ }
|
|
|
})
|
|
|
.catch((response) => {
|
|
|
console.log(response)
|