|
@@ -622,6 +622,7 @@ export default {
|
|
oldList.forEach((v1) => {
|
|
oldList.forEach((v1) => {
|
|
let goodModel = {
|
|
let goodModel = {
|
|
spuCode: v1.spuCode || "",
|
|
spuCode: v1.spuCode || "",
|
|
|
|
+ id: vi.id || "",
|
|
// good_code: v1.type_code,
|
|
// good_code: v1.type_code,
|
|
allot_num: v1.allot_num,
|
|
allot_num: v1.allot_num,
|
|
is_del: "0",
|
|
is_del: "0",
|
|
@@ -681,7 +682,7 @@ export default {
|
|
dList = JSON.parse(JSON.stringify(this.delList));
|
|
dList = JSON.parse(JSON.stringify(this.delList));
|
|
console.log(addList);
|
|
console.log(addList);
|
|
addList.forEach((v1, index) => {
|
|
addList.forEach((v1, index) => {
|
|
- let oldindex = oldList.findIndex((v2) => v1.spuCode=== v2.spuCode);
|
|
|
|
|
|
+ let oldindex = oldList.findIndex((v2) => v1.spuCode === v2.spuCode);
|
|
if (oldindex === -1) {
|
|
if (oldindex === -1) {
|
|
addList[index].usable_num = addList[index].usable_stock;
|
|
addList[index].usable_num = addList[index].usable_stock;
|
|
addList[index].allot_num = addList[index].usable_stock;
|
|
addList[index].allot_num = addList[index].usable_stock;
|