|
|
@@ -186,7 +186,9 @@
|
|
|
}).then((res) => {
|
|
|
this.goodsList = [];
|
|
|
res.data.forEach((item) => {
|
|
|
- item.receiveQuantity = item.quantity;
|
|
|
+ if (this.type != 'detail') {
|
|
|
+ item.receiveQuantity = item.quantity;
|
|
|
+ }
|
|
|
item.sendStatus = 2;
|
|
|
this.goodsList.push(this.deepCopy(item));
|
|
|
});
|