|
@ -713,8 +713,7 @@ export const DeliverRecordDetailRules = reactive({ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const ExtendColumn = useCrudSchemas( |
|
|
export const ExtendColumn = useCrudSchemas([ |
|
|
reactive<CrudSchema[]>([ |
|
|
|
|
|
{ |
|
|
{ |
|
|
label: '从库位', |
|
|
label: '从库位', |
|
|
field: 'fromLocationCode', |
|
|
field: 'fromLocationCode', |
|
@ -732,21 +731,23 @@ export const ExtendColumn = useCrudSchemas( |
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
|
searchTitle: '库位信息', // 查询弹窗标题
|
|
|
searchTitle: '库位信息', // 查询弹窗标题
|
|
|
searchAllSchemas: Location.allSchemas, // 查询弹窗所需类
|
|
|
searchAllSchemas: Location.allSchemas, // 查询弹窗所需类
|
|
|
searchPage: LocationApi.getLocationPage, // 查询弹窗所需分页方法
|
|
|
searchPage: LocationApi.getLocationListByBusinesstype, // 查询弹窗所需分页方法
|
|
|
searchCondition: [ |
|
|
searchCondition: [ |
|
|
{ |
|
|
{ |
|
|
key: 'available', |
|
|
key: 'isIn', |
|
|
value: 'TRUE', |
|
|
value: false, |
|
|
|
|
|
isMainValue: false |
|
|
|
|
|
},{ |
|
|
|
|
|
key: 'businessType', |
|
|
|
|
|
value: 'Deliver', |
|
|
isMainValue: false |
|
|
isMainValue: false |
|
|
} |
|
|
} |
|
|
] |
|
|
] |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
isSearch: true |
|
|
isSearch: true |
|
|
}, |
|
|
} |
|
|
|
|
|
]) |
|
|
]) |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
//表单校验
|
|
|
//表单校验
|
|
|
export const ExtendColumnRules = reactive({ |
|
|
export const ExtendColumnRules = reactive({ |
|
|