|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<el-row class="addForm">
|
|
|
- <p>{{ powers }}</p>
|
|
|
+ <!-- <p>{{ powers }}</p> -->
|
|
|
<el-col :span="24">
|
|
|
<el-form
|
|
|
:model="ruleForm"
|
|
@@ -499,6 +499,7 @@ export default {
|
|
|
v.error_remark = v.error_remark || "";
|
|
|
v.stock_num = v.stock_num || "0";
|
|
|
v.edit = false;
|
|
|
+ v.spuCode = v.good_type_code;
|
|
|
this.tableForm.product_go.push(v);
|
|
|
});
|
|
|
let columnsList = JSON.parse(JSON.stringify(config.columns));
|
|
@@ -681,7 +682,7 @@ export default {
|
|
|
dList = JSON.parse(JSON.stringify(this.delList));
|
|
|
console.log(addList);
|
|
|
addList.forEach((v1, index) => {
|
|
|
- let oldindex = oldList.findIndex((v2) => v1.type_code === v2.type_code);
|
|
|
+ let oldindex = oldList.findIndex((v2) => v1.spuCode=== v2.spuCode);
|
|
|
if (oldindex === -1) {
|
|
|
addList[index].usable_num = addList[index].usable_stock;
|
|
|
addList[index].allot_num = addList[index].usable_stock;
|
|
@@ -690,7 +691,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
newList.forEach((v3) => {
|
|
|
- let otherindex = dList.findIndex((v4) => v3.type_code === v4.type_code);
|
|
|
+ let otherindex = dList.findIndex((v4) => v3.spuCode === v4.spuCode);
|
|
|
if (otherindex !== -1) {
|
|
|
dList.splice(otherindex, 1);
|
|
|
}
|