问题修改

master
zhangdi 2 weeks ago
parent c3f36e6907
commit 58d550ce69
  1. 11
      src/views/firstOrder/components/outDialog.vue

@ -608,15 +608,18 @@ export default {
}, },
selectionChange(row) { selectionChange(row) {
this.batchSelectionVisible = false; this.batchSelectionVisible = false;
row.forEach((item) => { // row.forEach((item) => {
item.theOutboundQuantity = 1; // item.outboundQuantity = 1;
}); // });
this.sizeForm.inTableData = row; this.sizeForm.inTableData = row;
this.getStatistics(); this.getStatistics();
}, },
confirm(allSelectedList) { confirm(allSelectedList) {
this.consumableVisible = false; this.consumableVisible = false;
allSelectedList.forEach((item) => {
item.outboundQuantity = 1;
});
this.sizeForm.inTableData = allSelectedList; this.sizeForm.inTableData = allSelectedList;
this.getStatistics(); this.getStatistics();
}, // }, //
@ -680,7 +683,7 @@ export default {
} }
} }
if (this.sizeForm.optionType === "NY") { if (this.sizeForm.optionType === "NY") {
row.theOutboundQuantity = 1; row.outboundQuantity = 1;
} }
this.getStatistics(); this.getStatistics();
}, },

Loading…
Cancel
Save