|
@ -11,302 +11,174 @@ export const ItemRules = reactive({ |
|
|
{ required: true, message: '请选择备件单位', trigger: 'blur' }, |
|
|
{ required: true, message: '请选择备件单位', trigger: 'blur' }, |
|
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
|
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
|
|
], |
|
|
], |
|
|
classification: [ |
|
|
|
|
|
{ required: true, message: '请选择备件分类', trigger: 'blur' }, |
|
|
|
|
|
], |
|
|
|
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
export const Item = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
export const Item = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
{ |
|
|
{ |
|
|
label: '备件编号', |
|
|
label: '零件编码', |
|
|
field: 'number', |
|
|
field: 'number', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isSearch: true, |
|
|
isSearch: true, |
|
|
isForm: false, |
|
|
|
|
|
table: { |
|
|
table: { |
|
|
width: 180, |
|
|
width: 180, |
|
|
fixed: 'left' |
|
|
fixed: 'left' |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '备件名称', |
|
|
label: '零件名称', |
|
|
field: 'name', |
|
|
field: 'name', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isSearch: true, |
|
|
isSearch: true, |
|
|
table: { |
|
|
table: { |
|
|
width: 110, |
|
|
width: 110 |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '规格', |
|
|
label: '规格型号', |
|
|
field: 'specifications', |
|
|
field: 'specifications', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
label: '是否常储', |
|
|
|
|
|
field: 'isConstant', |
|
|
|
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
|
|
|
dictClass: 'string', |
|
|
|
|
|
isSearch: false, |
|
|
isSearch: false, |
|
|
isTable: true, |
|
|
|
|
|
sort: 'custom', |
|
|
|
|
|
table: { |
|
|
table: { |
|
|
width: 110, |
|
|
width: 110 |
|
|
}, |
|
|
|
|
|
tableForm: { |
|
|
|
|
|
type: 'Select', |
|
|
|
|
|
inactiveValue: 'FALSE', |
|
|
|
|
|
disabled: true |
|
|
|
|
|
}, |
|
|
}, |
|
|
form: { |
|
|
|
|
|
component: 'Switch', |
|
|
|
|
|
value: 'TRUE', |
|
|
|
|
|
componentProps: { |
|
|
|
|
|
inactiveValue: 'FALSE', |
|
|
|
|
|
activeValue: 'TRUE' |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
label: '科目', |
|
|
|
|
|
field: 'subject', |
|
|
|
|
|
sort: 'custom', |
|
|
|
|
|
dictType: DICT_TYPE.ITEM_SUBJECT, |
|
|
|
|
|
dictClass: 'string', |
|
|
|
|
|
isSearch: false, |
|
|
|
|
|
isTable: true, |
|
|
|
|
|
tableForm: { |
|
|
|
|
|
type: 'Select' |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
label: '科目代码', |
|
|
|
|
|
field: 'subjectCode', |
|
|
|
|
|
sort: 'custom', |
|
|
|
|
|
isTable: true, |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '单位', |
|
|
label: '单位', |
|
|
field: 'uom', |
|
|
field: 'uom', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
dictType: DICT_TYPE.UOM, |
|
|
|
|
|
dictClass: 'string', |
|
|
|
|
|
isSearch: false, |
|
|
isSearch: false, |
|
|
isTable: true, |
|
|
table: { |
|
|
tableForm: { |
|
|
width: 110 |
|
|
type: 'Select' |
|
|
}, |
|
|
} |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '类别', |
|
|
label: '供应商名称', |
|
|
field: 'category', |
|
|
field: 'supplierName', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
dictType: DICT_TYPE.ITEM_CATEGORY, |
|
|
|
|
|
dictClass: 'string', |
|
|
|
|
|
isSearch: false, |
|
|
isSearch: false, |
|
|
isTable: true, |
|
|
table: { |
|
|
tableForm: { |
|
|
width: 130 |
|
|
type: 'Select' |
|
|
}, |
|
|
} |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '备件分类', |
|
|
label: '生产厂家', |
|
|
field: 'classification', |
|
|
field: 'brand', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
dictType: DICT_TYPE.CLASSIFICATION, |
|
|
|
|
|
dictClass: 'string', |
|
|
|
|
|
isSearch: false, |
|
|
isSearch: false, |
|
|
isTable: true, |
|
|
table: { |
|
|
tableForm: { |
|
|
width: 110 |
|
|
type: 'Select' |
|
|
}, |
|
|
} |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '区域', |
|
|
label: '最高库存', |
|
|
field: 'region', |
|
|
field: 'maxInventory', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
dictType: DICT_TYPE.ITEM_REGION, |
|
|
|
|
|
dictClass: 'string', |
|
|
|
|
|
isSearch: false, |
|
|
isSearch: false, |
|
|
isTable: true, |
|
|
form: { |
|
|
tableForm: { |
|
|
component: 'InputNumber', |
|
|
type: 'Select' |
|
|
value: 0 |
|
|
} |
|
|
}, |
|
|
|
|
|
table: { |
|
|
|
|
|
width: 110 |
|
|
|
|
|
}, |
|
|
}, |
|
|
}, |
|
|
// {
|
|
|
|
|
|
// label: '单价',
|
|
|
|
|
|
// field: 'singlePrice',
|
|
|
|
|
|
// sort: 'custom',
|
|
|
|
|
|
// },
|
|
|
|
|
|
{ |
|
|
{ |
|
|
label: '重采购点', |
|
|
label: '最低库存', |
|
|
field: 'reprocurement', |
|
|
field: 'minInventory', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
table: { |
|
|
isSearch: false, |
|
|
width: 110, |
|
|
|
|
|
}, |
|
|
|
|
|
form: { |
|
|
form: { |
|
|
component: 'InputNumber', |
|
|
component: 'InputNumber', |
|
|
value: 0 |
|
|
value: 0 |
|
|
}, |
|
|
}, |
|
|
|
|
|
table: { |
|
|
|
|
|
width: 110 |
|
|
|
|
|
}, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '安全库存', |
|
|
label: '采购周期(周)', |
|
|
field: 'safetyStock', |
|
|
field: 'procurementCycle', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
table: { |
|
|
isSearch: false, |
|
|
width: 110, |
|
|
|
|
|
}, |
|
|
|
|
|
form: { |
|
|
form: { |
|
|
component: 'InputNumber', |
|
|
component: 'InputNumber', |
|
|
value: 0 |
|
|
value: 0 |
|
|
}, |
|
|
}, |
|
|
|
|
|
table: { |
|
|
|
|
|
width: 150 |
|
|
|
|
|
}, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '成本中心', |
|
|
label: 'ABC分类', |
|
|
field: 'cost', |
|
|
field: 'classification', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
|
|
|
isSearch: false, |
|
|
table: { |
|
|
table: { |
|
|
width: 110, |
|
|
width: 110 |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '采购员', |
|
|
label: '使用地点', |
|
|
field: 'purchaser', |
|
|
field: 'usePlace', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
|
|
|
isSearch: false, |
|
|
table: { |
|
|
table: { |
|
|
width: 100, |
|
|
width: 110 |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '财务', |
|
|
label: '项目', |
|
|
field: 'financer', |
|
|
field: 'project', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
|
|
|
isSearch: false, |
|
|
|
|
|
table: { |
|
|
|
|
|
width: 110 |
|
|
|
|
|
}, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '是否以旧换新', |
|
|
label: '价格', |
|
|
field: 'isRadeIn', |
|
|
field: 'price', |
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
|
|
|
dictClass: 'string', |
|
|
|
|
|
isSearch: false, |
|
|
|
|
|
isTable: true, |
|
|
|
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
|
|
|
isSearch: false, |
|
|
table: { |
|
|
table: { |
|
|
width: 140 |
|
|
width: 110 |
|
|
}, |
|
|
}, |
|
|
tableForm: { |
|
|
|
|
|
type: 'Select', |
|
|
|
|
|
inactiveValue: 'FALSE', |
|
|
|
|
|
disabled: true |
|
|
|
|
|
}, |
|
|
|
|
|
form: { |
|
|
|
|
|
component: 'Switch', |
|
|
|
|
|
value: 'TRUE', |
|
|
|
|
|
componentProps: { |
|
|
|
|
|
inactiveValue: 'FALSE', |
|
|
|
|
|
activeValue: 'TRUE' |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '是否框架协议', |
|
|
label: '描述', |
|
|
field: 'isFramework', |
|
|
field: 'describes', |
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
|
|
|
dictClass: 'string', |
|
|
|
|
|
isSearch: false, |
|
|
|
|
|
isTable: true, |
|
|
|
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
|
|
|
isSearch: false, |
|
|
table: { |
|
|
table: { |
|
|
width: 140 |
|
|
width: 110 |
|
|
}, |
|
|
}, |
|
|
tableForm: { |
|
|
|
|
|
type: 'Select', |
|
|
|
|
|
inactiveValue: 'FALSE', |
|
|
|
|
|
disabled: true |
|
|
|
|
|
}, |
|
|
|
|
|
form: { |
|
|
|
|
|
component: 'Switch', |
|
|
|
|
|
value: 'TRUE', |
|
|
|
|
|
componentProps: { |
|
|
|
|
|
inactiveValue: 'FALSE', |
|
|
|
|
|
activeValue: 'TRUE' |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
}, |
|
|
// {
|
|
|
|
|
|
// label: '是否可用',
|
|
|
|
|
|
// field: 'available',
|
|
|
|
|
|
// dictType: DICT_TYPE.TRUE_FALSE,
|
|
|
|
|
|
// dictClass: 'string',
|
|
|
|
|
|
// isSearch: false,
|
|
|
|
|
|
// isTable: true,
|
|
|
|
|
|
// sort: 'custom',
|
|
|
|
|
|
// table: {
|
|
|
|
|
|
// width: 150
|
|
|
|
|
|
// },
|
|
|
|
|
|
// tableForm: {
|
|
|
|
|
|
// type: 'Select',
|
|
|
|
|
|
// inactiveValue: 'FALSE',
|
|
|
|
|
|
// disabled: true
|
|
|
|
|
|
// },
|
|
|
|
|
|
// form: {
|
|
|
|
|
|
// component: 'Switch',
|
|
|
|
|
|
// value: 'TRUE',
|
|
|
|
|
|
// componentProps: {
|
|
|
|
|
|
// inactiveValue: 'FALSE',
|
|
|
|
|
|
// activeValue: 'TRUE'
|
|
|
|
|
|
// }
|
|
|
|
|
|
// }
|
|
|
|
|
|
// },
|
|
|
|
|
|
{ |
|
|
{ |
|
|
label: '创建时间', |
|
|
label: '创建时间', |
|
|
field: 'createTime', |
|
|
field: 'createTime', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
formatter: dateFormatter, |
|
|
formatter: dateFormatter, |
|
|
|
|
|
isSearch: false, |
|
|
|
|
|
search: { |
|
|
|
|
|
component: 'DatePicker', |
|
|
|
|
|
componentProps: { |
|
|
|
|
|
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
|
|
|
type: 'daterange', |
|
|
|
|
|
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
isForm: false, |
|
|
isForm: false, |
|
|
table: { |
|
|
table: { |
|
|
width: 170 |
|
|
width: 180 |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
|
|
|
label: '描述', |
|
|
|
|
|
field: 'describes', |
|
|
|
|
|
sort: 'custom', |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
{ |
|
|
label: '操作', |
|
|
label: '操作', |
|
|
field: 'action', |
|
|
field: 'action', |
|
|
isForm: false, |
|
|
isForm: false, |
|
|
table: { |
|
|
table: { |
|
|
width: 180, |
|
|
width: 150, |
|
|
fixed: 'right' |
|
|
fixed: 'right' |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
])) |
|
|
])) |
|
|
|
|
|
|
|
|
export const ItemSearchTable = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
|
|
{ |
|
|
|
|
|
label: '备件编号', |
|
|
|
|
|
field: 'number', |
|
|
|
|
|
sort: 'custom', |
|
|
|
|
|
isSearch: true, |
|
|
|
|
|
isForm: false, |
|
|
|
|
|
table: { |
|
|
|
|
|
fixed: 'left' |
|
|
|
|
|
}, |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
label: '备件名称', |
|
|
|
|
|
field: 'name', |
|
|
|
|
|
sort: 'custom', |
|
|
|
|
|
isSearch: true, |
|
|
|
|
|
table: { |
|
|
|
|
|
}, |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
label: '数量', |
|
|
|
|
|
field: 'qty', |
|
|
|
|
|
sort: 'custom', |
|
|
|
|
|
} |
|
|
|
|
|
])) |
|
|
|
|
|