From 070f84777ae22b85a3bcdb2bdb7eb23dbe912fe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AD=A3=E6=98=93?= Date: Mon, 17 Jun 2024 15:46:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=87=BA=E5=BA=93=E8=AE=B0=E5=BD=95=E5=87=BA?= =?UTF-8?q?=E5=BA=93=E5=8D=95=E6=9F=A5=E8=AF=A2=E5=8A=9F=E8=83=BD=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/wmsManagement/WmGoodsOutProduction.vue | 2 +- src/views/wmsManagement/WmOutOrder.vue | 8 +------- .../TheBatchOutProductionDialog.vue | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/src/views/wmsManagement/WmGoodsOutProduction.vue b/src/views/wmsManagement/WmGoodsOutProduction.vue index 38421fd..1cd5fa0 100644 --- a/src/views/wmsManagement/WmGoodsOutProduction.vue +++ b/src/views/wmsManagement/WmGoodsOutProduction.vue @@ -407,7 +407,7 @@ pageSize: 30, shipmentNum: query, type: 1, - status: 1 + status: -1 } this.loading1 = true setTimeout(() => { diff --git a/src/views/wmsManagement/WmOutOrder.vue b/src/views/wmsManagement/WmOutOrder.vue index 17e1472..f07e762 100644 --- a/src/views/wmsManagement/WmOutOrder.vue +++ b/src/views/wmsManagement/WmOutOrder.vue @@ -438,7 +438,7 @@ typeFormat(row, column) { return this.selectDictLabel(this.typeOptions, row.type) }, - // 状态(0-停用 1-启用)字典翻译 + // 出库计划状态(0-停用 1-启用)字典翻译 statusFormat(row, column) { return this.selectDictLabel(this.statusOptions, row.status) }, @@ -448,7 +448,6 @@ this.form.customNo = item.customNo this.form.customName = item.customName this.form.customAddress = item.customAddress - console.log('handleCustomSelectChange', item) }, // 出库单物料表多选框选中数据 handleMaterialSelectionChange(selection) { @@ -461,7 +460,6 @@ handlerDeleteMaterial(ids = null) { let that = this const Ids = ids || this.materialIds - console.log(that.form, Ids) this.$confirm('是否确认移除数据项?') .then(() => { const list = JSON.parse(JSON.stringify(that.form.materialList)) @@ -504,8 +502,6 @@ submitForm: function () { this.$refs['form'].validate((valid) => { if (valid) { - console.log(JSON.stringify(this.form)) - console.log('add', this.form) if (this.form.shipmentNum != undefined && this.opertype === 2) { updateWmOutOrder(this.form) .then((res) => { @@ -521,7 +517,6 @@ //TODO 错误逻辑 }) } else { - console.log('addWmOutOrder') for (let item of this.form.materialList) { if ((item.requireOutNum * 1) < 1) { this.$message.error('需求量不可为0!' + item.partnumber); @@ -541,7 +536,6 @@ // } addWmOutOrder(this.form) .then((res) => { - console.log('addWmOutOrder', res) if (res.code === 200) { this.msgSuccess('新增成功') this.open = false diff --git a/src/views/wmsManagement/components/TheBatchOutProductionDialog/TheBatchOutProductionDialog.vue b/src/views/wmsManagement/components/TheBatchOutProductionDialog/TheBatchOutProductionDialog.vue index f202e02..9ba8978 100644 --- a/src/views/wmsManagement/components/TheBatchOutProductionDialog/TheBatchOutProductionDialog.vue +++ b/src/views/wmsManagement/components/TheBatchOutProductionDialog/TheBatchOutProductionDialog.vue @@ -147,7 +147,7 @@ pageSize: 30, shipmentNum: query, type: 1, - status: 1 + status: -1 } this.loading1 = true setTimeout(() => {