From b461c07010a005537f2691b58e4c99da8c28f6ce Mon Sep 17 00:00:00 2001 From: git_rabbit Date: Mon, 12 Jan 2026 11:44:34 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=94=9F=E4=BA=A7=E7=89=A9=E6=96=99?= =?UTF-8?q?=E7=AE=A1=E7=90=86):=20=E6=B7=BB=E5=8A=A0=E5=B7=A5=E5=8D=95?= =?UTF-8?q?=E5=8F=B7=E5=AD=97=E6=AE=B5=E5=B9=B6=E6=9B=BF=E6=8D=A2=E5=85=B3?= =?UTF-8?q?=E8=81=94=E8=AE=A2=E5=8D=95=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将关联订单号字段替换为工单号,并在查询表单和表格中新增工单号字段,以更好地满足生产物料出库记录的需求 --- .../productionMaterial/MmRecordOutbound.vue | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/views/materialManagement/productionMaterial/MmRecordOutbound.vue b/src/views/materialManagement/productionMaterial/MmRecordOutbound.vue index b7a9e46..81e92b0 100644 --- a/src/views/materialManagement/productionMaterial/MmRecordOutbound.vue +++ b/src/views/materialManagement/productionMaterial/MmRecordOutbound.vue @@ -22,6 +22,9 @@ + + + @@ -86,7 +89,7 @@ - + @@ -202,8 +205,8 @@ --> - - + + @@ -302,7 +305,7 @@ const columns = ref([ { visible: false, align: 'center', type: '', prop: 'unit', label: '计量单位', showOverflowTooltip: true }, { visible: true, align: 'center', type: 'dict', prop: 'transactionType', label: '出库类型', showOverflowTooltip: true }, { visible: false, align: 'center', type: '', prop: 'batchNo', label: '批次号', showOverflowTooltip: true }, - { visible: true, align: 'center', type: '', prop: 'orderNo', label: '关联订单号', showOverflowTooltip: true }, + { visible: true, align: 'center', type: '', prop: 'workorder', label: '工单号', showOverflowTooltip: true }, { visible: true, align: 'center', type: '', prop: 'operator', label: '操作员', showOverflowTooltip: true }, { visible: false, align: 'center', type: '', prop: 'remarks', label: '备注', showOverflowTooltip: true } //{ visible: false, prop: 'actions', label: '操作', type: 'slot', width: '160' } @@ -420,7 +423,7 @@ function reset() { unit: null, transactionType: null, batchNo: null, - orderNo: null, + workorder: null, operator: userStore.name, // 自动填充当前登录用户 remarks: null, createdTime: null