You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
334 lines
9.1 KiB
334 lines
9.1 KiB
12 months ago
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
|
||
|
import { dateFormatter } from '@/utils/formatTime'
|
||
|
|
||
|
import * as ItembasicApi from '@/api/wms/itembasic'
|
||
|
import { Itembasic } from '@/views/wms/basicDataManage/itemManage/itembasic/itembasic.data'
|
||
|
import * as LocationApi from '@/api/wms/location'
|
||
|
import { Location } from '@/views/wms/basicDataManage/factoryModeling/location/location.data'
|
||
|
import * as PackageunitApi from '@/api/wms/packageunit'
|
||
|
import { Packageunit } from '@/views/wms/basicDataManage/itemManage/packageunit/packageunit.data'
|
||
|
|
||
|
import * as WarehouseApi from '@/api/wms/warehouse'
|
||
|
import { Warehouse } from '@/views/wms/basicDataManage/factoryModeling/warehouse/warehouse.data'
|
||
|
|
||
|
import * as WorkshopApi from '@/api/wms/workshop'
|
||
|
import { Workshop } from '@/views/wms/basicDataManage/factoryModeling/workshop/workshop.data'
|
||
|
|
||
|
import * as ProductionlineApi from '@/api/wms/productionline'
|
||
|
import { Productionline } from '@/views/wms/basicDataManage/factoryModeling/productionline/productionline.data'
|
||
|
|
||
|
import * as WorkStationApi from '@/api/wms/workstation'
|
||
|
import { Workstation } from '@/views/wms/basicDataManage/factoryModeling/workstation/workstation.data'
|
||
|
|
||
|
// 表单校验
|
||
|
export const CallmaterialsRules = reactive({
|
||
|
itemCode: [required],
|
||
|
itemName: [required],
|
||
|
barcodeString: [required]
|
||
|
})
|
||
|
|
||
|
export const Callmaterials = useCrudSchemas(reactive<CrudSchema[]>([
|
||
|
{
|
||
|
label: '物料代码',
|
||
|
field: 'itemCode',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150,
|
||
|
fixed: 'left'
|
||
|
},
|
||
|
isSearch: true,
|
||
|
form: {
|
||
|
// labelMessage: '信息提示说明!!!',
|
||
|
componentProps: {
|
||
|
isSearchList: true, // 开启查询弹窗
|
||
|
searchListPlaceholder: '请选择物料代码', // 输入框占位文本
|
||
|
searchField: 'code', // 查询弹窗赋值字段
|
||
|
searchTitle: '物料信息', // 查询弹窗标题
|
||
|
searchAllSchemas: Itembasic.allSchemas, // 查询弹窗所需类
|
||
|
searchPage: ItembasicApi.getItembasicPage, // 查询弹窗所需分页方法
|
||
|
searchCondition: [{
|
||
|
key: 'available',
|
||
|
value: 'TRUE',
|
||
|
isMainValue: false
|
||
|
}]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '库位',
|
||
|
field: 'location',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
form: {
|
||
|
// labelMessage: '信息提示说明!!!',
|
||
|
componentProps: {
|
||
|
isSearchList: true, // 开启查询弹窗
|
||
|
searchListPlaceholder: '请选择库位代码', // 输入框占位文本
|
||
|
searchField: 'code', // 查询弹窗赋值字段
|
||
|
searchTitle: '库位信息', // 查询弹窗标题
|
||
|
searchAllSchemas: Location.allSchemas, // 查询弹窗所需类
|
||
|
searchPage: LocationApi.getLocationPage, // 查询弹窗所需分页方法
|
||
|
}
|
||
|
},
|
||
|
isSearch: true
|
||
|
},
|
||
|
{
|
||
|
label: '数量',
|
||
|
field: 'qty',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 120
|
||
|
},
|
||
|
form: {
|
||
|
component: 'InputNumber',
|
||
|
componentProps: {
|
||
|
style: {width:'100%'},
|
||
|
min: 0,
|
||
|
precision: 6
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '计量单位',
|
||
|
field: 'uom',
|
||
|
dictType: DICT_TYPE.UOM,
|
||
|
dictClass: 'string',
|
||
|
isTable: true,
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
tableForm: {
|
||
|
disabled: true,
|
||
|
type: 'Select'
|
||
|
},
|
||
|
form: {
|
||
|
componentProps: {
|
||
|
disabled: true
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '批次',
|
||
|
field: 'batch',
|
||
|
sort: 'custom',
|
||
|
isSearch: true,
|
||
|
table: {
|
||
|
width: 120
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '包装规格',
|
||
|
field: 'packUnit',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
form: {
|
||
|
// labelMessage: '信息提示说明!!!',
|
||
|
componentProps: {
|
||
|
isSearchList: true, // 开启查询弹窗
|
||
|
searchListPlaceholder: '请选择包装规格代码', // 输入框占位文本
|
||
|
searchField: 'code', // 查询弹窗赋值字段
|
||
|
searchTitle: '包装规格信息', // 查询弹窗标题
|
||
|
searchAllSchemas: Packageunit.allSchemas, // 查询弹窗所需类
|
||
|
searchPage: PackageunitApi.getPackageunitPage, // 查询弹窗所需分页方法
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '仓库代码',
|
||
|
field: 'warehouseCode',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
isSearch: true,
|
||
|
form: {
|
||
|
// labelMessage: '信息提示说明!!!',
|
||
|
componentProps: {
|
||
|
isSearchList: true, // 开启查询弹窗
|
||
|
searchListPlaceholder: '请选择仓库代码', // 输入框占位文本
|
||
|
searchField: 'code', // 查询弹窗赋值字段
|
||
|
searchTitle: '仓库信息', // 查询弹窗标题
|
||
|
searchAllSchemas: Warehouse.allSchemas, // 查询弹窗所需类
|
||
|
searchPage: WarehouseApi.getWarehousePage, // 查询弹窗所需分页方法
|
||
|
searchCondition: [{
|
||
|
key: 'available',
|
||
|
value: 'TRUE',
|
||
|
isMainValue: false
|
||
|
}]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '车间',
|
||
|
field: 'workshopCode',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
form: {
|
||
|
// labelMessage: '信息提示说明!!!',
|
||
|
componentProps: {
|
||
|
isSearchList: true, // 开启查询弹窗
|
||
|
searchListPlaceholder: '请选择车间代码', // 输入框占位文本
|
||
|
searchField: 'code', // 查询弹窗赋值字段
|
||
|
searchTitle: '车间信息', // 查询弹窗标题
|
||
|
searchAllSchemas: Workshop.allSchemas, // 查询弹窗所需类
|
||
|
searchPage: WorkshopApi.getWorkshopPage // 查询弹窗所需分页方法
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '生产线',
|
||
|
field: 'productionLineCode',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
form: {
|
||
|
// labelMessage: '',
|
||
|
componentProps: {
|
||
|
isSearchList: true, // 开启查询弹窗
|
||
|
searchListPlaceholder: '请选择生产线', // 输入框占位文本
|
||
|
searchField: 'code', // 查询弹窗赋值字段
|
||
|
searchTitle: '生产线信息', // 查询弹窗标题
|
||
|
searchAllSchemas: Productionline.allSchemas, // 查询弹窗所需类
|
||
|
searchPage: ProductionlineApi.getProductionlinePage // 查询弹窗所需分页方法
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '工位',
|
||
|
field: 'workStationCode',
|
||
|
sort: 'custom',
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
form: {
|
||
|
// labelMessage: '信息提示说明!!!',
|
||
|
componentProps: {
|
||
|
isSearchList: true, // 开启查询弹窗
|
||
|
searchListPlaceholder: '请选择工位', // 输入框占位文本
|
||
|
searchField: 'code', // 查询弹窗赋值字段
|
||
|
searchTitle: '工位信息', // 查询弹窗标题
|
||
|
searchAllSchemas: Workstation.allSchemas, // 查询弹窗所需类
|
||
|
searchPage: WorkStationApi.getWorkstationPage, // 查询弹窗所需分页方法
|
||
|
searchCondition: [{
|
||
|
key:'productionLineCode',
|
||
|
value:'productionLineCode',
|
||
|
message: '请填写生产线代码!',
|
||
|
isMainValue: true
|
||
|
},{
|
||
|
key:'workshopCode',
|
||
|
value:'workshopCode',
|
||
|
message: '请填写车间代码!',
|
||
|
isMainValue: true
|
||
|
},{
|
||
|
key:'available',
|
||
|
value:'TRUE',
|
||
|
isMainValue: false
|
||
|
}]
|
||
|
}
|
||
|
},
|
||
|
tableForm:{
|
||
|
isInpuFocusShow: true,
|
||
|
searchListPlaceholder: '请选择工位', // 输入框占位文本
|
||
|
searchField: 'code', // 查询弹窗赋值字段
|
||
|
searchTitle: '工位信息', // 查询弹窗标题
|
||
|
searchAllSchemas: Workstation.allSchemas, // 查询弹窗所需类
|
||
|
searchPage: WorkStationApi.getWorkstationPage, // 查询弹窗所需分页方法
|
||
|
searchCondition: [{
|
||
|
key:'productionLineCode',
|
||
|
value:'productionLineCode',
|
||
|
message: '请填写生产线代码!',
|
||
|
isMainValue: true
|
||
|
},{
|
||
|
key:'workshopCode',
|
||
|
value:'workshopCode',
|
||
|
message: '请填写车间代码!',
|
||
|
isMainValue: true
|
||
|
},{
|
||
|
key:'available',
|
||
|
value:'TRUE',
|
||
|
isMainValue: false
|
||
|
}]
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
label: '是否确认接收',
|
||
|
field: 'isRecive',
|
||
|
sort: 'custom',
|
||
|
dictType: DICT_TYPE.TRUE_FALSE,
|
||
|
dictClass: 'string',
|
||
|
isTable: true,
|
||
|
table: {
|
||
|
width: 150
|
||
|
},
|
||
|
form: {
|
||
|
component: 'Switch',
|
||
|
value: 'FALSE',
|
||
|
componentProps: {
|
||
|
inactiveValue: 'FALSE',
|
||
|
activeValue: 'TRUE'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '创建者id',
|
||
|
field: 'creator',
|
||
|
sort: 'custom',
|
||
|
isForm: false,
|
||
|
table: {
|
||
|
width: 180,
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '创建时间',
|
||
|
field: 'createTime',
|
||
|
sort: 'custom',
|
||
|
formatter: dateFormatter,
|
||
|
isForm: false,
|
||
|
detail: {
|
||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss'
|
||
|
},
|
||
|
table: {
|
||
|
width: 180,
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '最后更新者id',
|
||
|
field: 'updater',
|
||
|
sort: 'custom',
|
||
|
isForm: false,
|
||
|
table: {
|
||
|
width: 180,
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '最后更新时间',
|
||
|
field: 'updateTime',
|
||
|
sort: 'custom',
|
||
|
formatter: dateFormatter,
|
||
|
isForm: false,
|
||
|
detail: {
|
||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss'
|
||
|
},
|
||
|
table: {
|
||
|
width: 180,
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
label: '操作',
|
||
|
field: 'action',
|
||
|
isForm: false,
|
||
|
table: {
|
||
|
width: 180,
|
||
|
fixed: 'right'
|
||
|
}
|
||
|
}
|
||
|
]))
|