From 88cdf06f9e08045e205a0ba04bca5f1900df2e3e Mon Sep 17 00:00:00 2001 From: anthonywj Date: Sat, 17 Jun 2023 11:28:57 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=89=E5=85=A5=E7=AC=AC=E4=B8=89=E6=96=B9?= =?UTF-8?q?=E4=B8=9A=E5=8A=A1=E5=8D=95=E6=8D=AE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/DialogCreateOrder.vue | 50 ++++++++++++++++----------- 1 file changed, 29 insertions(+), 21 deletions(-) diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue index 02f27e04..e4c53f00 100644 --- a/src/views/inout/DialogCreateOrder.vue +++ b/src/views/inout/DialogCreateOrder.vue @@ -69,47 +69,48 @@ + - + {{ item.name }} + {{ + item.warehouseName + }} - + {{ item.name }} - {{ - item.warehouseName - }} @@ -797,7 +798,11 @@ export default { cQuery.corpType = 2; } else if (this.curAction.corpType == 0) { cQuery.corpType = 2; - } else return; + } else if (this.curAction.corpType == 1) { + cQuery.corpType = 1; + cQuery.outType = 2; + } else + return; getBasicUnitMaintains(cQuery) .then((response) => { this.loading = false; @@ -817,7 +822,10 @@ export default { if ((this.curAction.checkEnable && this.curAction.checkWebNew != 0) || this.viewType == 1) { //单据类型需要一次校验 或 单据类型为1,显示业务单据页面 this.bizShow = true; - } else this.bizShow = false; + } else { + this.bizShow = false; + } + if ( this.curAction.corpType == 0 || this.curAction.corpType == 2 || @@ -1183,7 +1191,7 @@ export default { }, submit(val) { - if(this.$isBlank(this.orderFormData.action)){ + if (this.$isBlank(this.orderFormData.action)) { this.$message.warning("单据类型不能为空!"); return }