From 444d12d594ac5204a5819782fc8576e94820060a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E6=98=8E=E6=A2=81?= <2429105222@qq.com> Date: Thu, 27 Apr 2023 11:32:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8D=95=E6=8D=AEbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../basic/product/UdiInfoSelectLocalUdi.vue | 6 ++++-- src/views/inout/DialogCreateOrder.vue | 20 ++++++++++++++++++- .../purchase/purPlan/purPlanEditDialog.vue | 2 ++ 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/src/views/basic/product/UdiInfoSelectLocalUdi.vue b/src/views/basic/product/UdiInfoSelectLocalUdi.vue index aee35ab9..c1239c22 100644 --- a/src/views/basic/product/UdiInfoSelectLocalUdi.vue +++ b/src/views/basic/product/UdiInfoSelectLocalUdi.vue @@ -558,15 +558,17 @@ export default { let selectData = this.multipleUdiSelection; let selected = null; if (this.multipleUdiSelection.length == 0) { - this.$message.warning('请选入产品!'); if (this.relId != null) { this.combineQuery.relId = this.relId; this.combineQuery.keys.push(this.currentRow.uuid); if (this.currentRow.check) { selected = this.currentRow; } - } else + } else{ + this.$message.warning('请选入产品!'); return; + } + } else { selectData.forEach((obj) => { diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue index 37feb59a..94752246 100644 --- a/src/views/inout/DialogCreateOrder.vue +++ b/src/views/inout/DialogCreateOrder.vue @@ -39,7 +39,7 @@ auto-complete="off" style="width: 90%" clearable - :disabled="corpOrderIdDisabled" + :disabled="true" > @@ -643,6 +643,24 @@ export default { this.$message.warning("请选择单据类型!"); return; } + if(this.curAction.corpType === 0 || this.curAction.corpType === 2 || (this.curAction.corpType === 1 && !this.curAction.genUnit)){ + if(this.$isBlank(this.orderFormData.fromCorp)){ + this.$message.warning("请选择往来单位!"); + return; + } + } + if(this.curAction.corpType == 3){ + if(this.$isBlank(this.orderFormData.fromInvCode)){ + this.$message.warning("请选择往来单位!"); + return; + } + } + if(this.curAction.corpType === 1 && this.curAction.genUnit){ + if(this.$isBlank(this.orderFormData.fromCorp)){ + this.$message.warning("请选择往来单位!"); + return; + } + } if (this.$isBlank(this.orderFormData.corpOrderId)) { let date = new Date(); this.orderFormData.corpOrderId = diff --git a/src/views/purchase/purPlan/purPlanEditDialog.vue b/src/views/purchase/purPlan/purPlanEditDialog.vue index a7af1471..e0fe0d53 100644 --- a/src/views/purchase/purPlan/purPlanEditDialog.vue +++ b/src/views/purchase/purPlan/purPlanEditDialog.vue @@ -459,6 +459,8 @@ export default { this.invCodeList = response.data || []; if (this.invCodeList != null && this.invCodeList.length == 1) { this.formData.invCode = this.invCodeList[0].code; + this.formData.deptCode = this.invCodeList[0].parentId; + } }) .catch(() => {