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',