|
|
@ -25,18 +25,27 @@ export const RepleinshJobMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
}, |
|
|
|
sortTableDefault: 1, |
|
|
|
}, |
|
|
|
// {
|
|
|
|
// label: '供应商代码',
|
|
|
|
// field: 'supplierCode',
|
|
|
|
// sort: 'custom',
|
|
|
|
// table: {
|
|
|
|
// width: 150
|
|
|
|
// },
|
|
|
|
// isTable: false,
|
|
|
|
// },
|
|
|
|
{ |
|
|
|
label: '供应商代码', |
|
|
|
field: 'supplierCode', |
|
|
|
label: '从仓库代码', |
|
|
|
field: 'fromWarehouseCode', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isTable: false, |
|
|
|
isTable: false |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '从仓库代码', |
|
|
|
field: 'fromWarehouseCode', |
|
|
|
label: '到仓库代码', |
|
|
|
field: 'toWarehouseCode', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
@ -64,6 +73,42 @@ export const RepleinshJobMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '日期时间', |
|
|
|
field: 'day', |
|
|
|
formatter: dateFormatter, |
|
|
|
detail: { |
|
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
|
|
}, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
}, |
|
|
|
sortTableDefault: 5, |
|
|
|
form: { |
|
|
|
component: 'DatePicker', |
|
|
|
componentProps: { |
|
|
|
style: { width: '100%' }, |
|
|
|
type: 'datetime', |
|
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
|
valueFormat: 'x' |
|
|
|
} |
|
|
|
}, |
|
|
|
search: { |
|
|
|
component: 'DatePicker', |
|
|
|
componentProps: { |
|
|
|
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
|
type: 'datetimerange', |
|
|
|
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
|
|
}, |
|
|
|
}, |
|
|
|
isDetail: true, |
|
|
|
isTable: true, |
|
|
|
isForm: true, |
|
|
|
isTableForm: false, |
|
|
|
isSearch: true, |
|
|
|
sortSearchDefault: 3, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '要求截止时间', |
|
|
|
field: 'requestDueTime', |
|
|
@ -525,6 +570,7 @@ export const RepleinshJobMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
// },
|
|
|
|
// isTable: false,
|
|
|
|
// },
|
|
|
|
|
|
|
|
{ |
|
|
|
label: '创建者', |
|
|
|
field: 'creator', |
|
|
@ -714,16 +760,16 @@ export const RepleinshJobDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
sortSearchDefault:3, |
|
|
|
sortTableDefault:4, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '来源库区代码', |
|
|
|
field: 'fromAreaCode', |
|
|
|
dictClass: 'string', |
|
|
|
isTable: true, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
}, |
|
|
|
// {
|
|
|
|
// label: '来源库区代码',
|
|
|
|
// field: 'fromAreaCode',
|
|
|
|
// dictClass: 'string',
|
|
|
|
// isTable: true,
|
|
|
|
// sort: 'custom',
|
|
|
|
// table: {
|
|
|
|
// width: 150
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
{ |
|
|
|
label: '库存状态', |
|
|
|
field: 'inventoryStatus', |
|
|
@ -773,26 +819,26 @@ export const RepleinshJobDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
}, |
|
|
|
isSearch: true, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '从库区', |
|
|
|
field: 'fromAreaCode', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isSearch: true, |
|
|
|
isTable: true |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '到库区', |
|
|
|
field: 'toAreaCode', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isSearch: true, |
|
|
|
isTable: true |
|
|
|
}, |
|
|
|
// {
|
|
|
|
// label: '从库区',
|
|
|
|
// field: 'fromAreaCode',
|
|
|
|
// sort: 'custom',
|
|
|
|
// table: {
|
|
|
|
// width: 150
|
|
|
|
// },
|
|
|
|
// isSearch: true,
|
|
|
|
// isTable: true
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// label: '到库区',
|
|
|
|
// field: 'toAreaCode',
|
|
|
|
// sort: 'custom',
|
|
|
|
// table: {
|
|
|
|
// width: 150
|
|
|
|
// },
|
|
|
|
// isSearch: true,
|
|
|
|
// isTable: true
|
|
|
|
// },
|
|
|
|
{ |
|
|
|
label: '品番', |
|
|
|
field: 'itemCode', |
|
|
@ -804,6 +850,23 @@ export const RepleinshJobDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
isSearch: true, |
|
|
|
sortTableDefault:3, |
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
label: '背番', |
|
|
|
field: 'backNumber', |
|
|
|
sort: 'custom', |
|
|
|
sortTableDefault:3, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isSearch:true, |
|
|
|
isForm: false, |
|
|
|
isTable: true, |
|
|
|
isDetail: true, |
|
|
|
tableForm: { |
|
|
|
disabled:true |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '品名', |
|
|
|
field: 'itemName', |
|
|
@ -900,6 +963,33 @@ export const RepleinshJobDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
// },
|
|
|
|
// hiddenInMain: true,
|
|
|
|
// },
|
|
|
|
{ |
|
|
|
label: '生产线区分', |
|
|
|
field: 'productionLine', |
|
|
|
sort: 'custom', |
|
|
|
sortTableDefault: 7, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isTableForm: true, |
|
|
|
isTable: true, |
|
|
|
isDetail: true, |
|
|
|
isForm: false, |
|
|
|
tableForm: { |
|
|
|
disabled:true |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '生产线代码', |
|
|
|
field: 'productionLineCode', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isTable: true, |
|
|
|
isForm: false, |
|
|
|
isDetail: true |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '创建时间', |
|
|
|
field: 'createTime', |
|
|
|