|
@@ -3021,7 +3021,7 @@ export default {
|
|
|
fDriverName: this.whgenlegList.fDriverName,
|
|
|
fDriverTel: this.whgenlegList.fDriverTel,
|
|
|
fDriverIdCar: this.whgenlegList.fDriverIdCar,
|
|
|
- fBusinessType: e.fBusinessType + "",
|
|
|
+ fBusinessType: e.fBusinessType.toString(),
|
|
|
fWarehouseInformation: e.fWarehouseids,
|
|
|
});
|
|
|
});
|
|
@@ -3415,6 +3415,8 @@ export default {
|
|
|
if (response.data.warehouseBillsItem) {
|
|
|
response.data.warehouseBillsItem.map((e) => {
|
|
|
e.fBsdate = Date.parse(e.fBsdate);
|
|
|
+ e.fBusinessType = e.fBusinessType.toString();
|
|
|
+
|
|
|
});
|
|
|
this.detailList = response.data.warehouseBillsItem;
|
|
|
} else {
|
|
@@ -3726,6 +3728,7 @@ export default {
|
|
|
}
|
|
|
response.data.warehousebillsitems.map((e) => {
|
|
|
e.fBsdate = Date.parse(e.fBsdate);
|
|
|
+ e.fBusinessType = e.fBusinessType.toString();
|
|
|
});
|
|
|
this.detailList = response.data.warehousebillsitems;
|
|
|
this.msgSuccess("保存成功");
|