调整
This commit is contained in:
@@ -432,6 +432,7 @@
|
||||
this.isDlgLoading = true
|
||||
this.getList(this.tableData, this.mallId, this.mallName, 1)
|
||||
}).catch((err) => {
|
||||
this.mallId = ''
|
||||
console.log(err)
|
||||
})
|
||||
},
|
||||
@@ -688,11 +689,19 @@
|
||||
this.createDeliveryBill(sn, mallId)
|
||||
}
|
||||
} else {
|
||||
this.choosedSnMallList.push(obj)
|
||||
for (let j = 0; j < this.choosedList.length; j++) {
|
||||
if (this.choosedList[j].subPurchaseOrderSn == sn) {
|
||||
this.choosedList[j].robTotal ++;
|
||||
break;
|
||||
if (res.result?.errorInfoList[0] && res.result?.errorInfoList[0].errorCode == 60002) {
|
||||
for (let j = 0; j < this.choosedList.length; j++) {
|
||||
if (this.choosedList[j].subPurchaseOrderSn == sn) {
|
||||
this.choosedList.splice(j, 1);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
this.choosedSnMallList.push(obj)
|
||||
for (let j = 0; j < this.choosedList.length; j++) {
|
||||
if (this.choosedList[j].subPurchaseOrderSn == sn) {
|
||||
this.choosedList[j].robTotal ++;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user