|
@@ -1629,6 +1629,14 @@ export default {
|
|
|
fMblno:this.form.fMblno
|
|
|
}
|
|
|
let formData = new window.FormData();
|
|
|
+ for(let li in this.warehouseDrList){
|
|
|
+ this.warehouseDrList[li].fMblno = this.form.fMblno
|
|
|
+ for(let item in this.nameOptions){
|
|
|
+ if(this.warehouseDrList[li].fCorpid == this.nameOptions[item].fName){
|
|
|
+ this.warehouseDrList[li].fCorpid = this.nameOptions[item].fId
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
formData.append("tWarehousebills",JSON.stringify(form))
|
|
|
formData.append("tWarehousebillsCntritems",JSON.stringify(this.dataList))
|
|
|
formData.append('tWarehousebillsfeesDr',JSON.stringify(this.warehouseDrList))
|