bug修复

This commit is contained in:
xiaofajia 2024-11-21 15:14:48 +08:00
parent 23913ea958
commit 2edd986202

View File

@ -393,13 +393,15 @@ export default {
}).then(res => {
this.partList = Object.entries(res.data)
this.partList = this.partList.map(([key, value]) => {
return [key, value.filter(item => (!item.inCount && item.inCount !== item.goodsCount))]
return [key, value.filter(item => {
return item.inCount !== item.goodsCount
})]
})
this.partList = this.partList.filter(([key, value]) => value.length > 0)
this.partList.forEach(([key, value]) => {
value.forEach(item => {
item.goodsCount = item.goodsCount - item?.inCount | 0
item.inCount = item.goodsCount - item?.inCount | 0
item.goodsCount = item.goodsCount - (item.inCount ? item.inCount : 0)
item.inCount = item.goodsCount
})
})
const values = this.partList.map(([key, value]) => value)
@ -426,11 +428,13 @@ export default {
id: this.soId,
soNo: createUniqueCodeByHead("RK")
}
if (this.selectRows && this.selectRows.length > 0){
data.soiList = [...this.selectRows]
data.waresList = [...this.selectRows.map(item => item.wares)]
}else {
const values = this.partList.map(([key, value]) => value).reduce((acc, item) => acc.concat(item))
if (this.selectRows && this.selectRows.length > 0){
const ids = this.selectRows.map(item => item.id)
const newSelect = values.filter(item => ids.includes(item.id))
data.soiList = [...newSelect]
data.waresList = [...newSelect.map(item => item.wares)]
}else {
data.soiList = [...values]
data.waresList = [...values.map(item => item.wares)]
}