|
|
@ -13,6 +13,10 @@ import { Balance } from '@/views/wms/inventoryManage/balance/balance.data' |
|
|
|
|
|
|
|
import * as LocationApi from '@/api/wms/location' |
|
|
|
import { Location } from '@/views/wms/basicDataManage/factoryModeling/location/location.data' |
|
|
|
|
|
|
|
import * as ItempackageApi from '@/api/wms/itempackage' |
|
|
|
import { Itempackaging } from '@/views/wms/basicDataManage/itemManage/itempackage/itempackage.data' |
|
|
|
|
|
|
|
import * as confgiApi from '@/api/infra/config' |
|
|
|
// 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值
|
|
|
|
const queryParams = { |
|
|
@ -293,6 +297,7 @@ export const RelegateRequestDetailRules = reactive({ |
|
|
|
available: [required], |
|
|
|
departmentCode: [required], |
|
|
|
concurrencyStamp: [required], |
|
|
|
packUnit: [required], |
|
|
|
}) |
|
|
|
|
|
|
|
export const RelegateRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
@ -531,6 +536,60 @@ export const RelegateRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
width: 120 |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '到库位代码', |
|
|
|
field: 'toLocationCode', |
|
|
|
sort: 'custom', |
|
|
|
tableForm:{ |
|
|
|
isInpuFocusShow: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择到库位代码', |
|
|
|
searchField: 'code', |
|
|
|
searchTitle: '库位信息', |
|
|
|
searchAllSchemas: Location.allSchemas, |
|
|
|
searchPage: LocationApi.selectBusinessTypeToLocation, |
|
|
|
}, |
|
|
|
form: { |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择到库位代码', |
|
|
|
searchField: 'code', |
|
|
|
searchTitle: '库位信息', |
|
|
|
searchAllSchemas: Location.allSchemas, |
|
|
|
searchPage: LocationApi.selectBusinessTypeToLocation, |
|
|
|
} |
|
|
|
}, |
|
|
|
table: { |
|
|
|
width: 120 |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '包装规格', |
|
|
|
field: 'packUnit', |
|
|
|
sort: 'custom', |
|
|
|
tableForm:{ |
|
|
|
isInpuFocusShow: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择包装规格', |
|
|
|
searchField: 'packUnit', |
|
|
|
searchTitle: '包装规格', |
|
|
|
searchAllSchemas: Itempackaging.allSchemas, |
|
|
|
searchPage: ItempackageApi.getItempackagingPage, |
|
|
|
}, |
|
|
|
form: { |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择包装规格', |
|
|
|
searchField: 'packUnit', |
|
|
|
searchTitle: '包装规格', |
|
|
|
searchAllSchemas: Itempackaging.allSchemas, |
|
|
|
searchPage: ItempackageApi.getItempackagingPage, |
|
|
|
} |
|
|
|
}, |
|
|
|
table: { |
|
|
|
width: 120 |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '到库区类型', |
|
|
|
field: 'toAreaTypes', |
|
|
|