From 29d37a14cc975cdd429a0f6170e0e1fac5e476a7 Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Tue, 4 Mar 2025 16:10:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inventory/count/InvCountOrderModify.vue | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/views/inventory/count/InvCountOrderModify.vue b/src/views/inventory/count/InvCountOrderModify.vue index 70458b33..6420033b 100644 --- a/src/views/inventory/count/InvCountOrderModify.vue +++ b/src/views/inventory/count/InvCountOrderModify.vue @@ -595,7 +595,7 @@ export default { if (response.code === 20000) { this.$message.success("保存成功!"); this.selectedIndex = null; - this.getCountOrderList(); + this.getList(); } else { this.$message.error(response.message); } @@ -680,9 +680,19 @@ export default { return; } - // if (this.countProductList.length === 0) { //添加第一个产品,先保存单据,再添加单据详情 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 = { orderIdFk: this.formData.orderId, productId: product.relIdFk, @@ -697,9 +707,7 @@ export default { }; this.countProductList.push(detailData); }); - // this.saveOrderDetail(); this.saveOrder(1); - // } this.selectInvProductVisible = false; }, getRowKeys(row) {