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