From 57ab2f2f436f3361ea7d2784a18915555a479302 Mon Sep 17 00:00:00 2001 From: xs Date: Thu, 19 Dec 2024 16:51:55 +0800 Subject: [PATCH] =?UTF-8?q?4.0.4=20=E6=88=90=E5=93=81=E5=87=BA=E5=BA=93?= =?UTF-8?q?=E5=AE=A1=E6=A0=B8=EF=BC=9A5=E6=A5=BC=E6=88=90=E5=93=81?= =?UTF-8?q?=E4=BB=93=E5=BA=93=E9=BB=98=E8=AE=A4=E4=BA=BA=E5=B7=A5=E5=87=BA?= =?UTF-8?q?=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../productoutstock/productoutstockDetail.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hw-ui/src/views/wms/productmanagement/productoutstock/productoutstockDetail.vue b/hw-ui/src/views/wms/productmanagement/productoutstock/productoutstockDetail.vue index 2fe5809b..16695714 100644 --- a/hw-ui/src/views/wms/productmanagement/productoutstock/productoutstockDetail.vue +++ b/hw-ui/src/views/wms/productmanagement/productoutstock/productoutstockDetail.vue @@ -208,7 +208,11 @@ export default { { required: true, message: "人工出库标识不能为空", trigger: "change" } ], }, - detailFlag: true + detailFlag: true, + MANUAL_FLAG:{ + YES:'1', + NO:'0' + } }; }, created() { @@ -228,6 +232,7 @@ export default { this.loading = true; getProductOutstockAudit(this.form.productOutstockId).then(response => { this.form = response.data; + this.form.manualFlag = this.form.warehouseId ===531 ? '1' : null; this.loading = false; }); },