fix:修复

dev_ksck
chenhc 1 month ago
parent 44abacf603
commit 29d37a14cc

@ -595,7 +595,7 @@ export default {
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success("保存成功!"); this.$message.success("保存成功!");
this.selectedIndex = null; this.selectedIndex = null;
this.getCountOrderList(); this.getList();
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
} }
@ -680,9 +680,19 @@ export default {
return; return;
} }
// if (this.countProductList.length === 0) {
// //
this.multiProduct.forEach(product => { this.multiProduct.forEach(product => {
if (this.countProductList.length != 0) {
this.countProductList.some(item => {
if (item.product && item.product.relIdFk == product.relIdFk &&
item.product.batchNo == product.batchNo ){
this.$message.error("当前产品【"+ product.nameCode + "】不能重复选入!");
return;
}
});
}
let detailData = { let detailData = {
orderIdFk: this.formData.orderId, orderIdFk: this.formData.orderId,
productId: product.relIdFk, productId: product.relIdFk,
@ -697,9 +707,7 @@ export default {
}; };
this.countProductList.push(detailData); this.countProductList.push(detailData);
}); });
// this.saveOrderDetail();
this.saveOrder(1); this.saveOrder(1);
// }
this.selectInvProductVisible = false; this.selectInvProductVisible = false;
}, },
getRowKeys(row) { getRowKeys(row) {

Loading…
Cancel
Save