|
@ -1,6 +1,6 @@ |
|
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
|
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
|
|
import { dateFormatter,dateFormatter2 } from '@/utils/formatTime' |
|
|
import { dateFormatter, dateFormatter2 } from '@/utils/formatTime' |
|
|
import * as getRequestsettingApi from '@/api/wms/requestsetting/index' |
|
|
import * as getRequestsettingApi from '@/api/wms/requestsetting/index' |
|
|
|
|
|
|
|
|
import * as WorkshopApi from '@/api/wms/workshop' |
|
|
import * as WorkshopApi from '@/api/wms/workshop' |
|
|
import { Workshop } from '@/views/wms/basicDataManage/factoryModeling/workshop/workshop.data' |
|
|
import { Workshop } from '@/views/wms/basicDataManage/factoryModeling/workshop/workshop.data' |
|
@ -26,7 +26,7 @@ import { Productionline } from '@/views/wms/basicDataManage/factoryModeling/prod |
|
|
import * as BomApi from '@/api/wms/bom' |
|
|
import * as BomApi from '@/api/wms/bom' |
|
|
import { Bom } from '@/views/wms/basicDataManage/itemManage/bom/bom.data' |
|
|
import { Bom } from '@/views/wms/basicDataManage/itemManage/bom/bom.data' |
|
|
|
|
|
|
|
|
import * as SupplieritemApi from '@/api/wms/supplieritem' |
|
|
import * as SupplieritemApi from '@/api/wms/supplieritem' |
|
|
import { Supplieritem } from '@/views/wms/basicDataManage/supplierManage/supplieritem/supplieritem.data' |
|
|
import { Supplieritem } from '@/views/wms/basicDataManage/supplierManage/supplieritem/supplieritem.data' |
|
|
|
|
|
|
|
|
import { Itempackaging } from '@/views/wms/basicDataManage/itemManage/itempackage/itempackage.data' |
|
|
import { Itempackaging } from '@/views/wms/basicDataManage/itemManage/itempackage/itempackage.data' |
|
@ -36,21 +36,21 @@ const { t } = useI18n() // 国际化 |
|
|
|
|
|
|
|
|
// 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值
|
|
|
// 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值
|
|
|
const queryParams = { |
|
|
const queryParams = { |
|
|
pageSize:10, |
|
|
pageSize: 10, |
|
|
pageNo:1, |
|
|
pageNo: 1, |
|
|
code:'ProductReceiptRequest' |
|
|
code: 'ProductReceiptRequest' |
|
|
} |
|
|
} |
|
|
const data = await getRequestsettingApi.getRequestsettingPage(queryParams) |
|
|
const data = await getRequestsettingApi.getRequestsettingPage(queryParams) |
|
|
const requestsettingData =data?.list[0]||{} |
|
|
const requestsettingData = data?.list[0] || {} |
|
|
|
|
|
|
|
|
// 获取当前操作人的部门
|
|
|
// 获取当前操作人的部门
|
|
|
import { useUserStore } from '@/store/modules/user' |
|
|
import { useUserStore } from '@/store/modules/user' |
|
|
import { TableColumn } from '@/types/table' |
|
|
import { TableColumn } from '@/types/table' |
|
|
const userStore = useUserStore() |
|
|
const userStore = useUserStore() |
|
|
const userDept = userStore.userSelfInfo.dept |
|
|
const userDept = userStore.userSelfInfo.dept |
|
|
// id 转str 否则form回显匹配不到
|
|
|
// id 转str 否则form回显匹配不到
|
|
|
userDept.id = userDept.id.toString() |
|
|
userDept.id = userDept.id.toString() |
|
|
const userDeptArray:any = [userDept] |
|
|
const userDeptArray: any = [userDept] |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* @returns {Array} 制品收货申请主表 |
|
|
* @returns {Array} 制品收货申请主表 |
|
@ -74,7 +74,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
dictClass: 'string', |
|
|
dictClass: 'string', |
|
|
isSearch: true, |
|
|
isSearch: true, |
|
|
isTable: true, |
|
|
isTable: true, |
|
|
isForm:false, |
|
|
isForm: false, |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
@ -95,7 +95,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
}, |
|
|
}, |
|
|
isSearch: true, |
|
|
isSearch: true, |
|
|
isForm: false, |
|
|
isForm: false, |
|
|
isTable:true, |
|
|
isTable: true, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '车间代码', |
|
|
label: '车间代码', |
|
@ -151,7 +151,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
key: 'available', |
|
|
key: 'available', |
|
|
value: 'TRUE', |
|
|
value: 'TRUE', |
|
|
isMainValue: false |
|
|
isMainValue: false |
|
|
},{ |
|
|
}, { |
|
|
key: 'workshopCode', |
|
|
key: 'workshopCode', |
|
|
value: 'workshopCode', |
|
|
value: 'workshopCode', |
|
|
message: '请填写车间代码!', |
|
|
message: '请填写车间代码!', |
|
@ -172,12 +172,12 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
key: 'available', |
|
|
key: 'available', |
|
|
value: 'TRUE', |
|
|
value: 'TRUE', |
|
|
isMainValue: false |
|
|
isMainValue: false |
|
|
},{ |
|
|
}, { |
|
|
key: 'workshopCode', |
|
|
key: 'workshopCode', |
|
|
value: 'workshopCode', |
|
|
value: 'workshopCode', |
|
|
message: '请填写车间代码!', |
|
|
message: '请填写车间代码!', |
|
|
isMainValue: true |
|
|
isMainValue: true |
|
|
}], |
|
|
}], |
|
|
verificationParams: [{ |
|
|
verificationParams: [{ |
|
|
key: 'code', |
|
|
key: 'code', |
|
|
action: '==', |
|
|
action: '==', |
|
@ -266,7 +266,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
|
isTable:false, |
|
|
isTable: false, |
|
|
isForm: false |
|
|
isForm: false |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
@ -276,7 +276,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
|
isTable:false, |
|
|
isTable: false, |
|
|
isForm: false, |
|
|
isForm: false, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
@ -288,7 +288,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
|
isTable:false, |
|
|
isTable: false, |
|
|
isForm: false, |
|
|
isForm: false, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
@ -340,7 +340,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
form: { |
|
|
form: { |
|
|
component: 'DatePicker', |
|
|
component: 'DatePicker', |
|
|
componentProps: { |
|
|
componentProps: { |
|
|
style: {width: '100%'}, |
|
|
style: { width: '100%' }, |
|
|
type: 'datetime', |
|
|
type: 'datetime', |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
valueFormat: 'x', |
|
|
valueFormat: 'x', |
|
@ -382,7 +382,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
form: { |
|
|
form: { |
|
|
component: 'DatePicker', |
|
|
component: 'DatePicker', |
|
|
componentProps: { |
|
|
componentProps: { |
|
|
style: {width: '100%'}, |
|
|
style: { width: '100%' }, |
|
|
type: 'datetime', |
|
|
type: 'datetime', |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
valueFormat: 'x', |
|
|
valueFormat: 'x', |
|
@ -417,7 +417,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
label: '部门', |
|
|
label: '部门', |
|
|
field: 'departmentCode', |
|
|
field: 'departmentCode', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isForm:false, |
|
|
isForm: false, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
@ -452,7 +452,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
form: { |
|
|
form: { |
|
|
component: 'DatePicker', |
|
|
component: 'DatePicker', |
|
|
componentProps: { |
|
|
componentProps: { |
|
|
style: {width: '100%'}, |
|
|
style: { width: '100%' }, |
|
|
type: 'datetime', |
|
|
type: 'datetime', |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
valueFormat: 'x', |
|
|
valueFormat: 'x', |
|
@ -477,7 +477,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
dictClass: 'string', |
|
|
dictClass: 'string', |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
isForm:false, |
|
|
isForm: false, |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
@ -498,7 +498,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
dictClass: 'string', |
|
|
dictClass: 'string', |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
isForm:false, |
|
|
isForm: false, |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
@ -519,7 +519,7 @@ export const ProductreceiptRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
dictClass: 'string', |
|
|
dictClass: 'string', |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
isForm:false, |
|
|
isForm: false, |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
@ -596,7 +596,7 @@ export const ProductreceiptRequestMainRules = reactive({ |
|
|
directCreateRecord: [ |
|
|
directCreateRecord: [ |
|
|
{ required: true, message: '请选择是否跳过任务直接生成记录', trigger: 'change' } |
|
|
{ required: true, message: '请选择是否跳过任务直接生成记录', trigger: 'change' } |
|
|
], |
|
|
], |
|
|
remark: [ |
|
|
remark: [ |
|
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
|
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
|
|
], |
|
|
], |
|
|
}) |
|
|
}) |
|
@ -613,7 +613,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
|
isTableForm: false, |
|
|
isTableForm: false, |
|
|
tableForm:{ |
|
|
tableForm: { |
|
|
isInpuFocusShow: true, |
|
|
isInpuFocusShow: true, |
|
|
searchListPlaceholder: '请选择生产线代码', |
|
|
searchListPlaceholder: '请选择生产线代码', |
|
|
searchField: 'code', |
|
|
searchField: 'code', |
|
@ -624,7 +624,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
key: 'available', |
|
|
key: 'available', |
|
|
value: 'TRUE', |
|
|
value: 'TRUE', |
|
|
isMainValue: false |
|
|
isMainValue: false |
|
|
},{ |
|
|
}, { |
|
|
key: 'workshopCode', |
|
|
key: 'workshopCode', |
|
|
value: 'workshopCode', |
|
|
value: 'workshopCode', |
|
|
message: '请填写车间代码!', |
|
|
message: '请填写车间代码!', |
|
@ -644,7 +644,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
key: 'available', |
|
|
key: 'available', |
|
|
value: 'TRUE', |
|
|
value: 'TRUE', |
|
|
isMainValue: false |
|
|
isMainValue: false |
|
|
},{ |
|
|
}, { |
|
|
key: 'workshopCode', |
|
|
key: 'workshopCode', |
|
|
value: 'workshopCode', |
|
|
value: 'workshopCode', |
|
|
message: '请填写车间代码!', |
|
|
message: '请填写车间代码!', |
|
@ -660,27 +660,26 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
|
tableForm:{ |
|
|
tableForm: { |
|
|
multiple: true, |
|
|
enterSearch: true, |
|
|
disabled:true, |
|
|
isInpuFocusShow: true, |
|
|
// isInpuFocusShow: true,
|
|
|
|
|
|
searchListPlaceholder: '请选择工位代码', |
|
|
searchListPlaceholder: '请选择工位代码', |
|
|
searchField: 'code', |
|
|
searchField: 'code', |
|
|
searchTitle: '工位信息', |
|
|
searchTitle: '工位信息', |
|
|
searchAllSchemas: Workstation.allSchemas, |
|
|
searchAllSchemas: Workstation.allSchemas, |
|
|
searchPage: WorkstationApi.getWorkstationPage, |
|
|
searchPage: WorkstationApi.getWorkstationPage, |
|
|
|
|
|
|
|
|
searchCondition: [{ |
|
|
searchCondition: [{ |
|
|
key: 'available', |
|
|
key: 'available', |
|
|
value: 'TRUE', |
|
|
value: 'TRUE', |
|
|
isMainValue: false |
|
|
isMainValue: false |
|
|
},{ |
|
|
}, { |
|
|
key: 'productionLineCode', |
|
|
key: 'productionLineCode', |
|
|
value: 'productionLineCode', |
|
|
value: 'productionLineCode', |
|
|
message: '请填写生产线代码!', |
|
|
message: '请填写生产线代码!', |
|
|
isMainValue: true |
|
|
isMainValue: true |
|
|
}], |
|
|
}], |
|
|
verificationPage: WorkstationApi.getWorkstationByCodes, // 校验数去焦点输入是否正确的方法
|
|
|
isRepeat: true,//tableForm下方输入框是否可以重复添加该条数据
|
|
|
isShowTableFormSearch: true, |
|
|
|
|
|
verificationParams: [{ |
|
|
verificationParams: [{ |
|
|
key: 'code', |
|
|
key: 'code', |
|
|
action: '==', |
|
|
action: '==', |
|
@ -693,8 +692,8 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
form: { |
|
|
form: { |
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
componentProps: { |
|
|
componentProps: { |
|
|
enterSearch:true, |
|
|
enterSearch: true, |
|
|
isSearchList: true, |
|
|
isInpuFocusShow: true, |
|
|
searchListPlaceholder: '请选择工位代码', |
|
|
searchListPlaceholder: '请选择工位代码', |
|
|
searchField: 'code', |
|
|
searchField: 'code', |
|
|
searchTitle: '工位信息', |
|
|
searchTitle: '工位信息', |
|
@ -704,12 +703,12 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
key: 'available', |
|
|
key: 'available', |
|
|
value: 'TRUE', |
|
|
value: 'TRUE', |
|
|
isMainValue: false |
|
|
isMainValue: false |
|
|
},{ |
|
|
}, { |
|
|
key: 'productionLineCode', |
|
|
key: 'productionLineCode', |
|
|
value: 'productionLineCode', |
|
|
value: 'productionLineCode', |
|
|
message: '请填写生产线代码!', |
|
|
message: '请填写生产线代码!', |
|
|
isMainValue: true |
|
|
isMainValue: true |
|
|
}], |
|
|
}], |
|
|
verificationParams: [{ |
|
|
verificationParams: [{ |
|
|
key: 'code', |
|
|
key: 'code', |
|
|
action: '==', |
|
|
action: '==', |
|
@ -741,6 +740,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
value: 'TRUE', |
|
|
value: 'TRUE', |
|
|
isMainValue: false |
|
|
isMainValue: false |
|
|
}], |
|
|
}], |
|
|
|
|
|
isRepeat: true,//tableForm下方输入框是否可以重复添加该条数据
|
|
|
verificationParams: [{ |
|
|
verificationParams: [{ |
|
|
key: 'code', |
|
|
key: 'code', |
|
|
action: '==', |
|
|
action: '==', |
|
@ -783,8 +783,8 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
isTable:false, |
|
|
isTable: false, |
|
|
isTableForm: false, |
|
|
isTableForm: false, |
|
|
isForm: false |
|
|
isForm: false |
|
|
}, |
|
|
}, |
|
@ -807,7 +807,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
dictClass: 'string', |
|
|
dictClass: 'string', |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
@ -819,7 +819,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
field: 'woNumber', |
|
|
field: 'woNumber', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
@ -831,7 +831,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
field: 'woLine', |
|
|
field: 'woLine', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
@ -843,7 +843,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
field: 'packQty', |
|
|
field: 'packQty', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
@ -864,7 +864,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
// dictClass: 'string',
|
|
|
// dictClass: 'string',
|
|
|
isTable: false, |
|
|
isTable: false, |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
@ -876,7 +876,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
field: 'toOwnerCode', |
|
|
field: 'toOwnerCode', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
@ -888,7 +888,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
field: 'number', |
|
|
field: 'number', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
table: { |
|
|
table: { |
|
|
width: 180 |
|
|
width: 180 |
|
|
}, |
|
|
}, |
|
@ -903,13 +903,15 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
label: '物料代码', |
|
|
label: '物料代码', |
|
|
field: 'itemCode', |
|
|
field: 'itemCode', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
sortTableDefault:1003, |
|
|
sortTableDefault: 1003, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
|
tableForm:{ |
|
|
tableForm: { |
|
|
// enterSearch:true,
|
|
|
// enterSearch:true,
|
|
|
isInpuFocusShow: true, |
|
|
disabled: true, |
|
|
|
|
|
multiple: true, |
|
|
|
|
|
isInpuFocusShow: false, |
|
|
searchListPlaceholder: '请选择物料代码', |
|
|
searchListPlaceholder: '请选择物料代码', |
|
|
searchField: 'itemCode', |
|
|
searchField: 'itemCode', |
|
|
searchTitle: '生产线物料关系信息', |
|
|
searchTitle: '生产线物料关系信息', |
|
@ -919,12 +921,15 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
key: 'available', |
|
|
key: 'available', |
|
|
value: 'TRUE', |
|
|
value: 'TRUE', |
|
|
isMainValue: false |
|
|
isMainValue: false |
|
|
},{ |
|
|
}, { |
|
|
key: 'productionLineCode', |
|
|
key: 'productionLineCode', |
|
|
value: 'productionLineCode', |
|
|
value: 'productionLineCode', |
|
|
message: '请填写生产线代码!', |
|
|
message: '请填写生产线代码!', |
|
|
isMainValue: true |
|
|
isMainValue: true |
|
|
}], |
|
|
}], |
|
|
|
|
|
|
|
|
|
|
|
verificationPage: ProductionlineitemApi.getProductionLineCodelistByCodes, // 校验数去焦点输入是否正确的方法
|
|
|
|
|
|
isShowTableFormSearch: true, |
|
|
verificationParams: [{ |
|
|
verificationParams: [{ |
|
|
key: 'itemCode', |
|
|
key: 'itemCode', |
|
|
action: '==', |
|
|
action: '==', |
|
@ -948,12 +953,12 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
key: 'available', |
|
|
key: 'available', |
|
|
value: 'TRUE', |
|
|
value: 'TRUE', |
|
|
isMainValue: false |
|
|
isMainValue: false |
|
|
},{ |
|
|
}, { |
|
|
key: 'productionLineCode', |
|
|
key: 'productionLineCode', |
|
|
value: 'productionLineCode', |
|
|
value: 'productionLineCode', |
|
|
message: '请填写生产线代码!', |
|
|
message: '请填写生产线代码!', |
|
|
isMainValue: true |
|
|
isMainValue: true |
|
|
}], |
|
|
}], |
|
|
verificationParams: [{ |
|
|
verificationParams: [{ |
|
|
key: 'itemCode', |
|
|
key: 'itemCode', |
|
|
action: '==', |
|
|
action: '==', |
|
@ -972,7 +977,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
|
sortTableDefault:1004, |
|
|
sortTableDefault: 1004, |
|
|
tableForm: { |
|
|
tableForm: { |
|
|
isInpuFocusShow: true, |
|
|
isInpuFocusShow: true, |
|
|
searchListPlaceholder: '请选择Bom版本', // 输入框占位文本
|
|
|
searchListPlaceholder: '请选择Bom版本', // 输入框占位文本
|
|
@ -981,11 +986,11 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
searchAllSchemas: Bom.allSchemas, // 查询弹窗所需类
|
|
|
searchAllSchemas: Bom.allSchemas, // 查询弹窗所需类
|
|
|
searchPage: BomApi.getBomPage, // 查询弹窗所需分页方法
|
|
|
searchPage: BomApi.getBomPage, // 查询弹窗所需分页方法
|
|
|
searchCondition: [{ |
|
|
searchCondition: [{ |
|
|
key:'productItemCode', |
|
|
key: 'productItemCode', |
|
|
value:'itemCode', |
|
|
value: 'itemCode', |
|
|
message: '请填写物料代码!', |
|
|
message: '请填写物料代码!', |
|
|
isMainValue: true |
|
|
isMainValue: true |
|
|
},{ |
|
|
}, { |
|
|
key: 'available', |
|
|
key: 'available', |
|
|
value: 'TRUE', |
|
|
value: 'TRUE', |
|
|
isMainValue: false |
|
|
isMainValue: false |
|
@ -1001,11 +1006,11 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
searchAllSchemas: Bom.allSchemas, // 查询弹窗所需类
|
|
|
searchAllSchemas: Bom.allSchemas, // 查询弹窗所需类
|
|
|
searchPage: BomApi.getBomPage, // 查询弹窗所需分页方法
|
|
|
searchPage: BomApi.getBomPage, // 查询弹窗所需分页方法
|
|
|
searchCondition: [{ |
|
|
searchCondition: [{ |
|
|
key:'productItemCode', |
|
|
key: 'productItemCode', |
|
|
value:'itemCode', |
|
|
value: 'itemCode', |
|
|
message: '请填写物料代码!', |
|
|
message: '请填写物料代码!', |
|
|
isMainValue: true |
|
|
isMainValue: true |
|
|
},{ |
|
|
}, { |
|
|
key: 'available', |
|
|
key: 'available', |
|
|
value: 'TRUE', |
|
|
value: 'TRUE', |
|
|
isMainValue: false |
|
|
isMainValue: false |
|
@ -1017,7 +1022,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
label: '批次', |
|
|
label: '批次', |
|
|
field: 'batch', |
|
|
field: 'batch', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
sortTableDefault:1006, |
|
|
sortTableDefault: 1006, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
@ -1026,7 +1031,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
label: '物料名称', |
|
|
label: '物料名称', |
|
|
field: 'itemName', |
|
|
field: 'itemName', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
sortTableDefault:1005, |
|
|
sortTableDefault: 1005, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
@ -1036,7 +1041,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
{ |
|
|
{ |
|
|
label: '物料描述1', |
|
|
label: '物料描述1', |
|
|
field: 'itemDesc1', |
|
|
field: 'itemDesc1', |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
table: { |
|
|
table: { |
|
@ -1048,7 +1053,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
{ |
|
|
{ |
|
|
label: '物料描述2', |
|
|
label: '物料描述2', |
|
|
field: 'itemDesc2', |
|
|
field: 'itemDesc2', |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
table: { |
|
|
table: { |
|
@ -1060,7 +1065,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
{ |
|
|
{ |
|
|
label: '项目代码', |
|
|
label: '项目代码', |
|
|
field: 'projectCode', |
|
|
field: 'projectCode', |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
table: { |
|
|
table: { |
|
@ -1073,7 +1078,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
label: '数量', |
|
|
label: '数量', |
|
|
field: 'qty', |
|
|
field: 'qty', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
sortTableDefault:1006, |
|
|
sortTableDefault: 1006, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
@ -1095,7 +1100,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
field: 'uom', |
|
|
field: 'uom', |
|
|
dictType: DICT_TYPE.UOM, |
|
|
dictType: DICT_TYPE.UOM, |
|
|
dictClass: 'string', |
|
|
dictClass: 'string', |
|
|
sortTableDefault:1007, |
|
|
sortTableDefault: 1007, |
|
|
isTable: true, |
|
|
isTable: true, |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
table: { |
|
|
table: { |
|
@ -1114,7 +1119,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
detail: { |
|
|
detail: { |
|
|
dateFormat: 'YYYY-MM-DD' |
|
|
dateFormat: 'YYYY-MM-DD' |
|
|
}, |
|
|
}, |
|
|
sortTableDefault:1008, |
|
|
sortTableDefault: 1008, |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
table: { |
|
|
table: { |
|
|
width: 180 |
|
|
width: 180 |
|
@ -1126,7 +1131,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
form: { |
|
|
form: { |
|
|
component: 'DatePicker', |
|
|
component: 'DatePicker', |
|
|
componentProps: { |
|
|
componentProps: { |
|
|
style: {width: '100%'}, |
|
|
style: { width: '100%' }, |
|
|
type: 'date', |
|
|
type: 'date', |
|
|
dateFormat: 'YYYY-MM-DD', |
|
|
dateFormat: 'YYYY-MM-DD', |
|
|
valueFormat: 'x', |
|
|
valueFormat: 'x', |
|
@ -1136,7 +1141,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
{ |
|
|
{ |
|
|
label: '过期日期', |
|
|
label: '过期日期', |
|
|
field: 'expireDate', |
|
|
field: 'expireDate', |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
formatter: dateFormatter2, |
|
|
formatter: dateFormatter2, |
|
|
detail: { |
|
|
detail: { |
|
@ -1150,14 +1155,14 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
// type: 'FormDate',
|
|
|
// type: 'FormDate',
|
|
|
// valueFormat: 'x',
|
|
|
// valueFormat: 'x',
|
|
|
// },
|
|
|
// },
|
|
|
tableForm:{ |
|
|
tableForm: { |
|
|
type: 'slot', |
|
|
type: 'slot', |
|
|
disabled: true |
|
|
disabled: true |
|
|
}, |
|
|
}, |
|
|
form: { |
|
|
form: { |
|
|
component: 'DatePicker', |
|
|
component: 'DatePicker', |
|
|
componentProps: { |
|
|
componentProps: { |
|
|
style: {width: '100%'}, |
|
|
style: { width: '100%' }, |
|
|
type: 'date', |
|
|
type: 'date', |
|
|
dateFormat: 'YYYY-MM-DD', |
|
|
dateFormat: 'YYYY-MM-DD', |
|
|
valueFormat: 'x', |
|
|
valueFormat: 'x', |
|
@ -1172,13 +1177,13 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '创建时间', |
|
|
label: '创建时间', |
|
|
field: 'createTime', |
|
|
field: 'createTime', |
|
|
formatter: dateFormatter, |
|
|
formatter: dateFormatter, |
|
|
sortTableDefault:1009, |
|
|
sortTableDefault: 1009, |
|
|
detail: { |
|
|
detail: { |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
|
}, |
|
|
}, |
|
@ -1189,7 +1194,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
form: { |
|
|
form: { |
|
|
component: 'DatePicker', |
|
|
component: 'DatePicker', |
|
|
componentProps: { |
|
|
componentProps: { |
|
|
style: {width: '100%'}, |
|
|
style: { width: '100%' }, |
|
|
type: 'datetime', |
|
|
type: 'datetime', |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
valueFormat: 'x', |
|
|
valueFormat: 'x', |
|
@ -1202,7 +1207,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
label: '创建者', |
|
|
label: '创建者', |
|
|
field: 'creator', |
|
|
field: 'creator', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
sortTableDefault:1010, |
|
|
sortTableDefault: 1010, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
@ -1213,7 +1218,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
label: '最后更新时间', |
|
|
label: '最后更新时间', |
|
|
field: 'updateTime', |
|
|
field: 'updateTime', |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
formatter: dateFormatter, |
|
|
formatter: dateFormatter, |
|
|
detail: { |
|
|
detail: { |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
@ -1225,7 +1230,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
form: { |
|
|
form: { |
|
|
component: 'DatePicker', |
|
|
component: 'DatePicker', |
|
|
componentProps: { |
|
|
componentProps: { |
|
|
style: {width: '100%'}, |
|
|
style: { width: '100%' }, |
|
|
type: 'datetime', |
|
|
type: 'datetime', |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
valueFormat: 'x', |
|
|
valueFormat: 'x', |
|
@ -1238,7 +1243,7 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
label: '最后更新者', |
|
|
label: '最后更新者', |
|
|
field: 'updater', |
|
|
field: 'updater', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
@ -1248,15 +1253,15 @@ export const ProductreceiptRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '操作', |
|
|
label: '操作', |
|
|
hiddenInMain:true, |
|
|
hiddenInMain: true, |
|
|
field: 'action', |
|
|
field: 'action', |
|
|
isDetail: false, |
|
|
isDetail: false, |
|
|
isForm: false , |
|
|
isForm: false, |
|
|
table: { |
|
|
table: { |
|
|
width: 150, |
|
|
width: 150, |
|
|
fixed: 'right' |
|
|
fixed: 'right' |
|
|
}, |
|
|
}, |
|
|
isTableForm:false, |
|
|
isTableForm: false, |
|
|
} |
|
|
} |
|
|
])) |
|
|
])) |
|
|
|
|
|
|
|
@ -1287,7 +1292,7 @@ export const ProductreceiptRequestDetailRules = reactive({ |
|
|
productionLineCode: [ |
|
|
productionLineCode: [ |
|
|
{ required: true, message: '请选择生产线代码', trigger: 'change' } |
|
|
{ required: true, message: '请选择生产线代码', trigger: 'change' } |
|
|
], |
|
|
], |
|
|
remark: [ |
|
|
remark: [ |
|
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
|
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
|
|
], |
|
|
], |
|
|
}) |
|
|
}) |
|
@ -1641,7 +1646,7 @@ export const ProductreceiptRequestLabel = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
|
tableForm:{ |
|
|
tableForm: { |
|
|
disabled: true |
|
|
disabled: true |
|
|
// isInpuFocusShow: true,
|
|
|
// isInpuFocusShow: true,
|
|
|
// searchListPlaceholder: '请选择生产线代码', // 输入框占位文本
|
|
|
// searchListPlaceholder: '请选择生产线代码', // 输入框占位文本
|
|
@ -1663,14 +1668,14 @@ export const ProductreceiptRequestLabel = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
table: { |
|
|
table: { |
|
|
width: 150 |
|
|
width: 150 |
|
|
}, |
|
|
}, |
|
|
tableForm:{ |
|
|
tableForm: { |
|
|
isInpuFocusShow: true, |
|
|
isInpuFocusShow: true, |
|
|
searchListPlaceholder: '请选择供应商代码', // 输入框占位文本
|
|
|
searchListPlaceholder: '请选择供应商代码', // 输入框占位文本
|
|
|
searchField: 'supplierCode', // 查询弹窗赋值字段
|
|
|
searchField: 'supplierCode', // 查询弹窗赋值字段
|
|
|
searchTitle: '供应商信息', // 查询弹窗标题
|
|
|
searchTitle: '供应商信息', // 查询弹窗标题
|
|
|
searchAllSchemas: Supplieritem.allSchemas, // 查询弹窗所需类
|
|
|
searchAllSchemas: Supplieritem.allSchemas, // 查询弹窗所需类
|
|
|
searchPage: SupplieritemApi.getSupplieritemPage, // 查询弹窗所需分页方法
|
|
|
searchPage: SupplieritemApi.getSupplieritemPage, // 查询弹窗所需分页方法
|
|
|
searchCondition:[{ |
|
|
searchCondition: [{ |
|
|
key: 'itemCode', |
|
|
key: 'itemCode', |
|
|
value: 'itemCode', |
|
|
value: 'itemCode', |
|
|
message: '请填写物料代码!', |
|
|
message: '请填写物料代码!', |
|
@ -1914,7 +1919,7 @@ export const ProductreceiptRequestLabel = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
tableForm: { |
|
|
tableForm: { |
|
|
enterSearch:true, |
|
|
enterSearch: true, |
|
|
disabled: true, |
|
|
disabled: true, |
|
|
isInpuFocusShow: true, |
|
|
isInpuFocusShow: true, |
|
|
searchListPlaceholder: '请选择包装', |
|
|
searchListPlaceholder: '请选择包装', |
|
@ -1983,7 +1988,7 @@ export const ProductreceiptRequestLabel = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
tableForm: { |
|
|
tableForm: { |
|
|
enterSearch:true, |
|
|
enterSearch: true, |
|
|
disabled: true, |
|
|
disabled: true, |
|
|
isInpuFocusShow: true, |
|
|
isInpuFocusShow: true, |
|
|
searchListPlaceholder: '请选择包装', |
|
|
searchListPlaceholder: '请选择包装', |
|
@ -2014,7 +2019,7 @@ export const ProductreceiptRequestLabel = useCrudSchemas(reactive<CrudSchema[]>( |
|
|
}, |
|
|
}, |
|
|
form: { |
|
|
form: { |
|
|
componentProps: { |
|
|
componentProps: { |
|
|
disabled:true |
|
|
disabled: true |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
tableForm: { |
|
|
tableForm: { |
|
|