|
|
@@ -1652,7 +1652,8 @@
|
|
|
return;
|
|
|
}
|
|
|
// 处理包装数据
|
|
|
- this.packingList = this.packingList.map((packingItem) => {
|
|
|
+ let _packingList = []
|
|
|
+ _packingList = this.packingList.map((packingItem) => {
|
|
|
return {
|
|
|
...packingItem,
|
|
|
workOrderId: this.detailProductList[0]?.workOrderId,
|
|
|
@@ -1670,7 +1671,7 @@
|
|
|
this.productList = this.productList.map((productItem) => {
|
|
|
return {
|
|
|
...productItem,
|
|
|
- outInDetailRecordRequestList: this.packingList.filter(
|
|
|
+ outInDetailRecordRequestList: _packingList.filter(
|
|
|
(item) => item.parentIndex === productItem.index
|
|
|
)
|
|
|
};
|