|
@@ -190,8 +190,6 @@ const submitForm = () => {
|
|
|
let data = proxy.deepClone(formData.data);
|
|
|
data.inOutStorageBomList = data.inOutStorageBomList.filter((item) => item.warehouseId === warehouseList.value[i].dictKey);
|
|
|
if (data.inOutStorageBomList && data.inOutStorageBomList.length > 0) {
|
|
|
- data.warehouseId = warehouseList.value[i].dictKey;
|
|
|
- const res = await proxy.post("/inOutStorage/add", data);
|
|
|
let orderList = [];
|
|
|
for (let j = 0; j < data.inOutStorageBomList.length; j++) {
|
|
|
orderList = orderList.concat(data.inOutStorageBomList[j].orderList.map((itemOrder) => itemOrder.orderSkuId));
|