|
|
@ -7,6 +7,9 @@ import * as getRequestsettingApi from '@/api/wms/requestsetting/index' |
|
|
|
import * as BalanceApi from '@/api/wms/balance' |
|
|
|
import { Balance } from '@/views/wms/inventoryManage/balance/balance.data' |
|
|
|
|
|
|
|
import * as DeliverPlanMainApi from '@/api/wms/deliverPlanMain' |
|
|
|
import { DeliverPlanMain } from '../../deliverplan/deliverPlanMain/deliverPlanMain.data' |
|
|
|
|
|
|
|
import * as locationApi from '@/api/wms/location' |
|
|
|
import { Location } from '../../../basicDataManage/factoryModeling/location/location.data' |
|
|
|
|
|
|
@ -48,6 +51,35 @@ export const StockupMainRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
}, |
|
|
|
isForm: false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '发货计划单号', |
|
|
|
field: 'deliverPlanNumber', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
}, |
|
|
|
form: { |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择发货计划单号', // 输入框占位文本
|
|
|
|
searchField: 'number', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '发货计划信息', // 查询弹窗标题
|
|
|
|
searchAllSchemas: DeliverPlanMain.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: DeliverPlanMainApi.getDeliverPlanMainPage, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{ |
|
|
|
key: 'available', |
|
|
|
value: 'TRUE', |
|
|
|
isMainValue: false |
|
|
|
}, |
|
|
|
{ |
|
|
|
key: 'status', |
|
|
|
value: '6', |
|
|
|
isMainValue: false |
|
|
|
}] |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '从仓库代码', |
|
|
|
field: 'fromWarehouseCode', |
|
|
@ -318,26 +350,26 @@ export const StockupMainRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '直接生成记录', |
|
|
|
field: 'directCreateRecord', |
|
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
|
dictClass: 'string', |
|
|
|
isTable: true, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
form: { |
|
|
|
component: 'Switch', |
|
|
|
value: requestsettingData.directCreateRecord, |
|
|
|
componentProps: { |
|
|
|
inactiveValue: 'FALSE', |
|
|
|
activeValue: 'TRUE', |
|
|
|
disabled: true |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
// {
|
|
|
|
// label: '直接生成记录',
|
|
|
|
// field: 'directCreateRecord',
|
|
|
|
// dictType: DICT_TYPE.TRUE_FALSE,
|
|
|
|
// dictClass: 'string',
|
|
|
|
// isTable: true,
|
|
|
|
// sort: 'custom',
|
|
|
|
// table: {
|
|
|
|
// width: 150
|
|
|
|
// },
|
|
|
|
// form: {
|
|
|
|
// component: 'Switch',
|
|
|
|
// value: requestsettingData.directCreateRecord,
|
|
|
|
// componentProps: {
|
|
|
|
// inactiveValue: 'FALSE',
|
|
|
|
// activeValue: 'TRUE',
|
|
|
|
// disabled: true
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
|
|
|
|
{ |
|
|
|
label: '到库区类型范围', |
|
|
@ -443,92 +475,92 @@ export const StockupDetailRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
width: 100 |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '包装号', |
|
|
|
field: 'packingNumber', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
tableForm:{ |
|
|
|
isInpuFocusShow: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择包装号', |
|
|
|
searchField: 'packingNumber', |
|
|
|
searchTitle: '库存余额信息', |
|
|
|
searchAllSchemas: Balance.allSchemas, |
|
|
|
searchPage: BalanceApi.getBalanceItemPage, |
|
|
|
searchCondition: [ |
|
|
|
// {
|
|
|
|
// key:'customerCode', // 查询列表中字段
|
|
|
|
// value:'customerCode', // 指主表某字段
|
|
|
|
// message: '请选择客户代码!', // 当前置条件为空时 弹出信息提示
|
|
|
|
// isMainValue: true // 表示查询条件是主表的字段的值
|
|
|
|
// }
|
|
|
|
] |
|
|
|
}, |
|
|
|
form: { |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择包装号', |
|
|
|
searchField: 'packingNumber', |
|
|
|
searchTitle: '库存余额信息', |
|
|
|
searchAllSchemas: Balance.allSchemas, |
|
|
|
searchPage: BalanceApi.getBalanceItemPage, |
|
|
|
searchCondition: [ |
|
|
|
// {
|
|
|
|
// key:'customerCode', // 查询列表中字段
|
|
|
|
// value:'customerCode', // 指主表某字段
|
|
|
|
// message: '请选择客户代码!', // 当前置条件为空时 弹出信息提示
|
|
|
|
// isMainValue: true // 表示查询条件是主表的字段的值
|
|
|
|
// }
|
|
|
|
] |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '器具号', |
|
|
|
field: 'containerNumber', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 100 |
|
|
|
}, |
|
|
|
isSearch: true, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '批次', |
|
|
|
field: 'batch', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: true, |
|
|
|
tableForm: { |
|
|
|
disabled: true, |
|
|
|
}, |
|
|
|
form: { |
|
|
|
componentProps: { |
|
|
|
disabled: true |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '库存状态', |
|
|
|
field: 'inventoryStatus', |
|
|
|
dictType: DICT_TYPE.INVENTORY_STATUS, |
|
|
|
dictClass: 'string', |
|
|
|
isTable: true, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 120 |
|
|
|
}, |
|
|
|
tableForm: { |
|
|
|
disabled: true, |
|
|
|
type: 'Select' |
|
|
|
}, |
|
|
|
form: { |
|
|
|
componentProps: { |
|
|
|
disabled: true |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
// {
|
|
|
|
// label: '包装号',
|
|
|
|
// field: 'packingNumber',
|
|
|
|
// sort: 'custom',
|
|
|
|
// table: {
|
|
|
|
// width: 150
|
|
|
|
// },
|
|
|
|
// tableForm:{
|
|
|
|
// isInpuFocusShow: true, // 开启查询弹窗
|
|
|
|
// searchListPlaceholder: '请选择包装号',
|
|
|
|
// searchField: 'packingNumber',
|
|
|
|
// searchTitle: '库存余额信息',
|
|
|
|
// searchAllSchemas: Balance.allSchemas,
|
|
|
|
// searchPage: BalanceApi.getBalanceItemPage,
|
|
|
|
// searchCondition: [
|
|
|
|
// // {
|
|
|
|
// // key:'customerCode', // 查询列表中字段
|
|
|
|
// // value:'customerCode', // 指主表某字段
|
|
|
|
// // message: '请选择客户代码!', // 当前置条件为空时 弹出信息提示
|
|
|
|
// // isMainValue: true // 表示查询条件是主表的字段的值
|
|
|
|
// // }
|
|
|
|
// ]
|
|
|
|
// },
|
|
|
|
// form: {
|
|
|
|
// // labelMessage: '信息提示说明!!!',
|
|
|
|
// componentProps: {
|
|
|
|
// isSearchList: true, // 开启查询弹窗
|
|
|
|
// searchListPlaceholder: '请选择包装号',
|
|
|
|
// searchField: 'packingNumber',
|
|
|
|
// searchTitle: '库存余额信息',
|
|
|
|
// searchAllSchemas: Balance.allSchemas,
|
|
|
|
// searchPage: BalanceApi.getBalanceItemPage,
|
|
|
|
// searchCondition: [
|
|
|
|
// // {
|
|
|
|
// // key:'customerCode', // 查询列表中字段
|
|
|
|
// // value:'customerCode', // 指主表某字段
|
|
|
|
// // message: '请选择客户代码!', // 当前置条件为空时 弹出信息提示
|
|
|
|
// // isMainValue: true // 表示查询条件是主表的字段的值
|
|
|
|
// // }
|
|
|
|
// ]
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// label: '器具号',
|
|
|
|
// field: 'containerNumber',
|
|
|
|
// sort: 'custom',
|
|
|
|
// table: {
|
|
|
|
// width: 100
|
|
|
|
// },
|
|
|
|
// isSearch: true,
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// label: '批次',
|
|
|
|
// field: 'batch',
|
|
|
|
// sort: 'custom',
|
|
|
|
// isSearch: true,
|
|
|
|
// tableForm: {
|
|
|
|
// disabled: true,
|
|
|
|
// },
|
|
|
|
// form: {
|
|
|
|
// componentProps: {
|
|
|
|
// disabled: true
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// label: '库存状态',
|
|
|
|
// field: 'inventoryStatus',
|
|
|
|
// dictType: DICT_TYPE.INVENTORY_STATUS,
|
|
|
|
// dictClass: 'string',
|
|
|
|
// isTable: true,
|
|
|
|
// sort: 'custom',
|
|
|
|
// table: {
|
|
|
|
// width: 120
|
|
|
|
// },
|
|
|
|
// tableForm: {
|
|
|
|
// disabled: true,
|
|
|
|
// type: 'Select'
|
|
|
|
// },
|
|
|
|
// form: {
|
|
|
|
// componentProps: {
|
|
|
|
// disabled: true
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
{ |
|
|
|
label: '物品代码', |
|
|
|
field: 'itemCode', |
|
|
|