From d41c2d1f77401995ef82b7e6dfa4c668567624e3 Mon Sep 17 00:00:00 2001 From: anthonywj Date: Tue, 18 Jul 2023 14:49:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=95=E6=8D=AE=E5=A4=8D=E5=88=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/DialogcChangeNewOrder.vue | 248 +++++++++++----------- 1 file changed, 123 insertions(+), 125 deletions(-) diff --git a/src/views/inout/DialogcChangeNewOrder.vue b/src/views/inout/DialogcChangeNewOrder.vue index 8e98084f..fd0b08a3 100644 --- a/src/views/inout/DialogcChangeNewOrder.vue +++ b/src/views/inout/DialogcChangeNewOrder.vue @@ -5,8 +5,8 @@ 生成单据 @@ -22,11 +22,11 @@ @@ -37,10 +37,10 @@ + v-for="item in curInvOptions" + :key="item.name" + :label="item.name" + :value="item.code"> {{ item.name }} @@ -51,10 +51,10 @@ + v-for="item in busTypeOptions" + :key="item.name" + :label="item.name" + :value="item.action"> {{ item.name }} @@ -66,21 +66,21 @@ {{ item.name }} @@ -91,10 +91,10 @@ + v-for="item in fromInvOptions" + :key="item.code" + :label="item.name" + :value="item.code"> {{ item.name }} {{ item.code @@ -130,52 +130,52 @@ style="width: 100%; margin-top: 20px;"> @@ -260,29 +260,27 @@ export default { this.$message.warning("请选择单据类型!"); return; } - if ((this.curAction.corpType === 0 || this.curAction.corpType === 2 || (this.curAction.corpType === 1 && !this.curAction.genUnit)) && this.$isBlank(this.formData.fromCorp)) { - this.$message.error('当前往来信息不能为空'); - return; - } if (this.$isBlank(this.formData.invCode)) { this.$message.error("当前分库不能为空"); return; } - - if (this.curAction.corpType === 0 || this.curAction.corpType === 2 || (this.curAction.corpType === 1 && !this.curAction.genUnit && this.$isBlank(this.formData.fromCorp))) { + if (this.curAction.corpType === 1 && this.$isBlank(this.formData.fromCorp)) { + this.$message.error('往来单位不能为空'); + return; + } + if ((this.curAction.corpType === 2 && this.$isBlank(this.formData.fromCorp))) { this.$message.error("往来单位不能为空"); return; } - - if (this.curAction.corpType == 3 && this.$isBlank(this.formData.fromInvCode)) { + if ((this.curAction.corpType === 4 && this.$isBlank(this.formData.fromCorp))) { this.$message.error("往来单位不能为空"); return; } - - if (this.curAction.corpType === 1 && this.$isBlank(this.formData.fromCorp)) { - this.$message.error('往来单位不能为空'); + if (this.curAction.corpType == 3 && this.$isBlank(this.formData.fromInvCode)) { + this.$message.error("往来单位不能为空"); return; } + if (this.detailList.length == 0) { this.$message.error("产品列表不能为空"); return; @@ -317,15 +315,15 @@ export default { products: products }; stockOrderChange(tQuery) - .then((response) => { - if (response.code === 20000) { - this.$message.success("提交成功"); - this.closeDialog(); - } else { - this.$message.error(response.message); - } - this.loading = false; - }); + .then((response) => { + if (response.code === 20000) { + this.$message.success("提交成功"); + this.closeDialog(); + } else { + this.$message.error(response.message); + } + this.loading = false; + }); }, @@ -333,15 +331,15 @@ export default { findInvListByUser() { this.curInvOptions = []; findInvByUser() - .then(response => { - this.curInvOptions = response.data || []; - if (this.curInvOptions != null && this.curInvOptions.length > 0 && this.formData.invWarehouseCode == null) { - this.formData.invWarehouseCode = this.curInvOptions[0].code; - this.getBusTypeByInv() - } - }) - .catch(() => { - }); + .then(response => { + this.curInvOptions = response.data || []; + if (this.curInvOptions != null && this.curInvOptions.length > 0 && this.formData.invWarehouseCode == null) { + this.formData.invWarehouseCode = this.curInvOptions[0].code; + this.getBusTypeByInv() + } + }) + .catch(() => { + }); }, @@ -351,11 +349,11 @@ export default { code: this.formData.invCode, }; findByInvUser(query) - .then((response) => { - this.busTypeOptions = response.data || []; - }) - .catch(() => { - }); + .then((response) => { + this.busTypeOptions = response.data || []; + }) + .catch(() => { + }); }, @@ -371,11 +369,11 @@ export default { pcode: invCode }; filterSubByInv(query) - .then((response) => { - this.subInvList = response.data || []; - }) - .catch(() => { - }); + .then((response) => { + this.subInvList = response.data || []; + }) + .catch(() => { + }); }, findStorageMethod(query) { @@ -386,11 +384,11 @@ export default { locInvCode: this.formData.locStorageCode, }; filterAllByLoc(cQuery) - .then((response) => { - this.fromStorageOptions = response.data || []; - }) - .catch(() => { - }); + .then((response) => { + this.fromStorageOptions = response.data || []; + }) + .catch(() => { + }); }, findMethod(query) { this.fromOptions = []; @@ -410,13 +408,13 @@ export default { cQuery.corpType = 2; } else return; getBasicUnitMaintains(cQuery) - .then((response) => { - this.loading = false; - this.fromOptions = response.data.list || []; - }) - .catch(() => { - this.loading = false; - }); + .then((response) => { + this.loading = false; + this.fromOptions = response.data.list || []; + }) + .catch(() => { + this.loading = false; + }); }, @@ -451,14 +449,14 @@ export default { locInvCode: this.formData.invCode, }; findByFrom(cQuery) - .then((response) => { - this.fromInvOptions = response.data || []; - if (val == 1) { - this.formData.fromInvCode = this.fromInvOptions[0].code; - } - }) - .catch(() => { - }); + .then((response) => { + this.fromInvOptions = response.data || []; + if (val == 1) { + this.formData.fromInvCode = this.fromInvOptions[0].code; + } + }) + .catch(() => { + }); }, changeFun(row) { @@ -475,14 +473,14 @@ export default { orderIdFk: orderId } getBizDetailList(query) - .then((response) => { - this.detailLoading = false; - this.detailList = response.data.list || []; - }) - .catch(() => { - this.detailLoading = false; - this.detailList = []; - }); + .then((response) => { + this.detailLoading = false; + this.detailList = response.data.list || []; + }) + .catch(() => { + this.detailLoading = false; + this.detailList = []; + }); }, deleteOrderDetail(index) { for (let i = 0; i < this.detailList.length; i++) {