From 3177c578a4c4c947b47df6ba3a570c24251be24e Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Fri, 23 Aug 2024 18:24:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A1=A5=E4=B8=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/DialogCreateOrder.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue index ae8988f6..368c5b47 100644 --- a/src/views/inout/DialogCreateOrder.vue +++ b/src/views/inout/DialogCreateOrder.vue @@ -1069,7 +1069,9 @@ export default { this.findMethod(); } else if (this.curAction.corpType == 3) { //2. 切换往来仓库 - this.orderFormData.fromInvCode = null; + if (this.orderQuery == null || this.orderQuery.billNo == null){ + this.orderFormData.fromInvCode = null; + } this.findFromInvList(); } if (this.curAction.scanPreIn && this.curAction.backPreinType == 1 && this.curAction.preInBack) { @@ -1129,7 +1131,7 @@ export default { findByFrom(cQuery) .then((response) => { this.fromInvOptions = response.data || []; - if (val == 1) { + if (this.fromInvOptions.length == 1) { this.orderFormData.fromInvCode = this.fromInvOptions[0].code; } })