From 32b8b583a1810e3d09fdde410f748686ff2ceb42 Mon Sep 17 00:00:00 2001 From: qiankanghui Date: Tue, 23 Jun 2026 11:30:35 +0800 Subject: [PATCH] =?UTF-8?q?feat(order):=20=E6=B7=BB=E5=8A=A0=E6=A3=80?= =?UTF-8?q?=E9=AA=8C=E5=AE=8C=E6=88=90=E6=95=B0=E9=87=8F=E5=88=97=E5=88=B0?= =?UTF-8?q?PO=E8=AE=A2=E5=8D=95=E8=A1=A8=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在PO订单主表中添加inspectionCompletedQty列配置 - 在PO订单搜索表中添加inspectionCompletedQty列配置 - 设置列宽度为140像素并居中对齐 - 启用溢出提示功能 - 配置列标签为"Inspection Completed Qty" - 设置为不可编辑状态并禁用排序功能 --- src/views/modules/order/poOrder.vue | 23 ++++++++++++++++++++++ src/views/modules/order/poOrder_search.vue | 8 ++++++++ 2 files changed, 31 insertions(+) diff --git a/src/views/modules/order/poOrder.vue b/src/views/modules/order/poOrder.vue index e8fd7d8..d1d0d0a 100644 --- a/src/views/modules/order/poOrder.vue +++ b/src/views/modules/order/poOrder.vue @@ -1226,6 +1226,29 @@ export default { editType: 'text', selectOptionsKey: '', selectOptions: null + }, + { + userId: this.$store.state.user.name, + functionId: 812003, + serialNumber: '812003Table1InspectionCompletedQty', + tableId: '812003Table1', + tableName: 'PO Order', + columnProp: 'inspectionCompletedQty', + headerAlign: 'center', + align: 'center', + columnLabel: 'Inspection Completed Qty', + columnHidden: false, + columnImage: false, + columnSortable: false, + sortLv: 0, + status: true, + fixed: '', + columnWidth: 140, + showOverflowTooltip: true, + editAble: false, + editType: 'text', + selectOptionsKey: '', + selectOptions: null } ] } diff --git a/src/views/modules/order/poOrder_search.vue b/src/views/modules/order/poOrder_search.vue index 6cd0f9d..51c8e9c 100644 --- a/src/views/modules/order/poOrder_search.vue +++ b/src/views/modules/order/poOrder_search.vue @@ -437,6 +437,14 @@ export default { columnWidth: 180, showOverflowTooltip: true, headerAlign: 'center' + }, + { + columnProp: 'inspectionCompletedQty', + columnLabel: 'Inspection Completed Qty', + align: 'center', + columnWidth: 140, + showOverflowTooltip: true, + headerAlign: 'center' } ] }