This commit is contained in:
刘仕伟
2024-03-04 19:28:50 +08:00
parent 66624fc77a
commit 81c81b3c2a
2 changed files with 24 additions and 13 deletions

View File

@@ -244,6 +244,9 @@ export default {
/*if (!flag && (item1.specKeyId != 1001 && item1.specKeyId != 43404162)) { /*if (!flag && (item1.specKeyId != 1001 && item1.specKeyId != 43404162)) {
specIds.push({spec_key_id: item1.spec_key_id, spec_value: item1.spec_value}) specIds.push({spec_key_id: item1.spec_key_id, spec_value: item1.spec_value})
}*/ }*/
if (!flag) {
specIds.push({spec_key_id: item1.spec_key_id, spec_value: item1.spec_value})
}
}) })
}) })
@@ -310,6 +313,9 @@ export default {
/*if (!flag && (item1.specKeyId != 1001 && item1.specKeyId != 43404162)) { /*if (!flag && (item1.specKeyId != 1001 && item1.specKeyId != 43404162)) {
specIds.push({specKeyId: item1.specKeyId, specValue: item1.specValue}) specIds.push({specKeyId: item1.specKeyId, specValue: item1.specValue})
}*/ }*/
if (!flag) {
specIds.push({specKeyId: item1.specKeyId, specValue: item1.specValue})
}
}) })
}) })

View File

@@ -558,6 +558,10 @@
return item.isCanJoinDeliverPlatform; return item.isCanJoinDeliverPlatform;
}) })
res.result.subOrderForSupplierList.map((item) => { res.result.subOrderForSupplierList.map((item) => {
let temp = data.filter(i => {
return i.subPurchaseOrderSn == item.subPurchaseOrderSn
})
if (temp.length == 0) {
data.push({ data.push({
robTotal: 0, robTotal: 0,
subPurchaseOrderSn: item.subPurchaseOrderSn, subPurchaseOrderSn: item.subPurchaseOrderSn,
@@ -572,6 +576,7 @@
mallId: mallId, mallId: mallId,
mallName: mallName mallName: mallName
}) })
}
}) })
if (this.pageSize == length) { if (this.pageSize == length) {