|
|
@ -112,6 +112,7 @@ export const PackageoverRequestMain = useCrudSchemas( |
|
|
|
sort: 'custom', |
|
|
|
isForm: true, |
|
|
|
isTable: true, |
|
|
|
isSearch: true, |
|
|
|
isDetail: true, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
@ -221,7 +222,7 @@ export const PackageoverRequestMain = useCrudSchemas( |
|
|
|
field: 'fromAreaTypes', |
|
|
|
dictType: DICT_TYPE.AREA_TYPE, |
|
|
|
dictClass: 'string', |
|
|
|
isSearch: true, |
|
|
|
isSearch: false, |
|
|
|
isTable: false, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
@ -264,16 +265,20 @@ export const PackageoverRequestMain = useCrudSchemas( |
|
|
|
{ |
|
|
|
label: '入库库存状态范围', |
|
|
|
field: 'inInventoryStatuses', |
|
|
|
dictType: DICT_TYPE.INVENTORY_STATUS, |
|
|
|
dictClass: 'string', |
|
|
|
sort: 'custom', |
|
|
|
isTable: false, |
|
|
|
isForm: false |
|
|
|
isForm:false, |
|
|
|
isTable:false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '出库库存状态范围', |
|
|
|
field: 'outInventoryStatuses', |
|
|
|
dictType: DICT_TYPE.INVENTORY_STATUS, |
|
|
|
dictClass: 'string', |
|
|
|
sort: 'custom', |
|
|
|
isTable: false, |
|
|
|
isForm: false |
|
|
|
isForm:false, |
|
|
|
isTable:false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '部门', |
|
|
@ -430,7 +435,7 @@ export const PackageoverRequestMain = useCrudSchemas( |
|
|
|
} |
|
|
|
}, |
|
|
|
isForm: false, |
|
|
|
isSearch: true, |
|
|
|
isSearch: false, |
|
|
|
search: { |
|
|
|
component: 'DatePicker', |
|
|
|
componentProps: { |
|
|
@ -520,6 +525,7 @@ export const PackageoverRequestDetail = useCrudSchemas( |
|
|
|
label: '品番', |
|
|
|
field: 'itemCode', |
|
|
|
sort: 'custom', |
|
|
|
isSearch:true, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
@ -578,6 +584,7 @@ export const PackageoverRequestDetail = useCrudSchemas( |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isTableForm: false, |
|
|
|
isSearch: true, |
|
|
|
isForm: false |
|
|
|
}, |
|
|
|
{ |
|
|
@ -588,6 +595,7 @@ export const PackageoverRequestDetail = useCrudSchemas( |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isTableForm: false, |
|
|
|
isSearch: true, |
|
|
|
isForm: false |
|
|
|
}, |
|
|
|
{ |
|
|
@ -656,7 +664,7 @@ export const PackageoverRequestDetail = useCrudSchemas( |
|
|
|
label: '从包装规格', |
|
|
|
field: 'fromPackUnit', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: true, |
|
|
|
isSearch: false, |
|
|
|
table: { |
|
|
|
width: 120 |
|
|
|
}, |
|
|
@ -735,7 +743,7 @@ export const PackageoverRequestDetail = useCrudSchemas( |
|
|
|
label: '到包装规格', |
|
|
|
field: 'toPackUnit', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: true, |
|
|
|
isSearch: false, |
|
|
|
table: { |
|
|
|
width: 120 |
|
|
|
}, |
|
|
@ -955,26 +963,33 @@ export const PackageoverRequestDetail = useCrudSchemas( |
|
|
|
{ |
|
|
|
label: '创建时间', |
|
|
|
field: 'createTime', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
isTable: true, |
|
|
|
formatter: dateFormatter, |
|
|
|
detail: { |
|
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
|
|
}, |
|
|
|
isTable: false, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
}, |
|
|
|
form: { |
|
|
|
component: 'DatePicker', |
|
|
|
componentProps: { |
|
|
|
style: { width: '100%' }, |
|
|
|
type: 'datetime', |
|
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
|
valueFormat: 'x' |
|
|
|
} |
|
|
|
}, |
|
|
|
isTableForm: false |
|
|
|
isForm: false, |
|
|
|
isSearch: true, |
|
|
|
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')] |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '创建者', |
|
|
|