|
@@ -610,10 +610,13 @@ export default {
|
610
|
610
|
return;
|
611
|
611
|
}
|
612
|
612
|
}
|
613
|
|
-
|
|
613
|
+ for(let i=0;i<this.recordInfo.recordData.length;i++){
|
|
614
|
+ this.recordInfo.recordData[i].price = this.recordInfo.recordData[i].price.toString()
|
|
615
|
+ }
|
614
|
616
|
const params = {
|
615
|
617
|
stockIn: this.recordInfo.recordData
|
616
|
618
|
};
|
|
619
|
+ console.log("params2222",params)
|
617
|
620
|
EditWarehouse(
|
618
|
621
|
params,
|
619
|
622
|
this.warehousing_time,
|
|
@@ -660,7 +663,9 @@ export default {
|
660
|
663
|
response.data.data.info[i].good_name = response.data.data.info[i].GoodInfo.good_name
|
661
|
664
|
response.data.data.info[i].name = response.data.data.info[i].GoodInfo.specification_name + "*" + response.data.data.info[i].GoodInfo.min_number+response.data.data.info[i].GoodInfo.min_unit
|
662
|
665
|
response.data.data.info[i].min_unit = response.data.data.info[i].GoodInfo.min_unit
|
|
666
|
+
|
663
|
667
|
this.recordInfo.recordData.push(response.data.data.info[i]);
|
|
668
|
+
|
664
|
669
|
console.log("列表",this.recordInfo.recordData)
|
665
|
670
|
}
|
666
|
671
|
|