From 29bba57de0b6d08e11182e887f8e0dfeeccfb991 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E5=BA=86=E6=BA=90?= Date: Thu, 17 Jul 2025 17:34:11 +0800 Subject: [PATCH] =?UTF-8?q?[SBBJ-1228]=E9=87=87=E8=B4=AD=E5=91=A8=E6=9C=9F?= =?UTF-8?q?=E4=B8=BA=E5=A4=A9=E6=95=B0=EF=BC=88=E6=95=B0=E5=AD=97=EF=BC=89?= =?UTF-8?q?=EF=BC=8C=E9=AB=98=E5=82=A8=EF=BC=88=E6=95=B0=E9=87=8F=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5=E5=B0=8F=E6=95=B0=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/eam/basic/item/item.data.ts | 24 ++++++++++++++++ .../item/itemAccounts/itemAccounts.data.ts | 28 +++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/src/views/eam/basic/item/item.data.ts b/src/views/eam/basic/item/item.data.ts index e41c409..aa88d1e 100644 --- a/src/views/eam/basic/item/item.data.ts +++ b/src/views/eam/basic/item/item.data.ts @@ -191,6 +191,30 @@ export const Item = useCrudSchemas( value: 0 } }, + { + label: '采购周期', + field: 'purchaseCycle', + sort: 'custom', + table: { + width: 110 + }, + form: { + component: 'InputNumber', + value: 0 + } + }, + { + label: '高储', + field: 'highStorage', + sort: 'custom', + table: { + width: 110 + }, + form: { + component: 'InputNumber', + value: 0 + } + }, { label: '成本中心', field: 'cost', diff --git a/src/views/eam/item/itemAccounts/itemAccounts.data.ts b/src/views/eam/item/itemAccounts/itemAccounts.data.ts index 723ec74..afe4eec 100644 --- a/src/views/eam/item/itemAccounts/itemAccounts.data.ts +++ b/src/views/eam/item/itemAccounts/itemAccounts.data.ts @@ -479,6 +479,34 @@ export const ItemAccounts = useCrudSchemas( width: 150 } }, + { + label: '采购周期', + field: 'purchaseCycle', + hiddenSearchHigh: true, + sort: 'custom', + isForm: false, + table: { + width: 110 + }, + form: { + component: 'InputNumber', + value: 0 + } + }, + { + label: '高储', + field: 'highStorage', + hiddenSearchHigh: true, + sort: 'custom', + isForm: false, + table: { + width: 110 + }, + form: { + component: 'InputNumber', + value: 0 + } + }, { label: '是否框架协议', field: 'isFramework',