Browse Source

[SBBJ-1228]采购周期为天数(数字),高储(数量可以小数)

master
zengqinyuan 1 week ago
parent
commit
29bba57de0
  1. 24
      src/views/eam/basic/item/item.data.ts
  2. 28
      src/views/eam/item/itemAccounts/itemAccounts.data.ts

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

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

Loading…
Cancel
Save