Browse Source

发料申请新增修改

master
陈薪名 1 year ago
parent
commit
4984baf395
  1. 39
      src/views/wms/issueManage/issue/issueRequestMain/index.vue
  2. 272
      src/views/wms/issueManage/issue/issueRequestMain/issueRequestMain.data.ts

39
src/views/wms/issueManage/issue/issueRequestMain/index.vue

@ -44,7 +44,6 @@
@success="getList" @success="getList"
:rules="IssueRequestMainRules" :rules="IssueRequestMainRules"
:formAllSchemas="IssueRequestMain.allSchemas" :formAllSchemas="IssueRequestMain.allSchemas"
:searchTableParams="searchTableParams"
:tableAllSchemas="IssueRequestDetail.allSchemas" :tableAllSchemas="IssueRequestDetail.allSchemas"
:tableFormRules="IssueRequestDetailRules" :tableFormRules="IssueRequestDetailRules"
:tableData="tableData" :tableData="tableData"
@ -64,12 +63,11 @@
:allSchemas="IssueRequestMain.allSchemas" :allSchemas="IssueRequestMain.allSchemas"
:detailAllSchemas="IssueRequestDetail.allSchemas" :detailAllSchemas="IssueRequestDetail.allSchemas"
:detailAllSchemasRules="IssueRequestDetailRules" :detailAllSchemasRules="IssueRequestDetailRules"
:searchTableParams="searchTableParams"
:apiCreate="IssueRequestDetailApi.createIssueRequestDetail" :apiCreate="IssueRequestDetailApi.createIssueRequestDetail"
:apiUpdate="IssueRequestDetailApi.updateIssueRequestDetail" :apiUpdate="IssueRequestDetailApi.updateIssueRequestDetail"
:apiPage="IssueRequestDetailApi.getIssueRequestDetailPage" :apiPage="IssueRequestDetailApi.getIssueRequestDetailPage"
:apiDelete="IssueRequestDetailApi.deleteIssueRequestDetail" :apiDelete="IssueRequestDetailApi.deleteIssueRequestDetail"
:Echo="Echo" @searchTableSuccessDetail="searchTableSuccessDetail"
/> />
<!-- 导入 --> <!-- 导入 -->
@ -99,44 +97,27 @@ const updataTableColumns = (val) => {
tableColumns.value = val tableColumns.value = val
} }
//
const searchTableParams = ref([
//{
// formField: 'productItemCode',
// searchTableTitle: '',
// searchTableAllSchemas: Itembasic.allSchemas,
// searchTablePage: ItembasicApi.getItembasicPage
//}
])
// //
const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => { const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => {
nextTick(() => { nextTick(() => {
if (type == 'tableForm') { if (type == 'tableForm') {
// //
//row[formField] = val[0][searchField] row[formField] = val[0][searchField]
//row['poLine'] = val[0]['poLine']
//row['batch'] = val[0]['toBatch']
//row['altBatch'] = val[0]['altBatch']
//row['itemCode'] = val[0]['itemCode']
//row['itemName'] = val[0]['itemName']
//row['itemDesc1'] = val[0]['itemDesc1']
//row['itemDesc2'] = val[0]['itemDesc2']
//row['projectCode'] = val[0]['projectCode']
//row['qty'] = val[0]['qty']
//row['uom'] = val[0]['uom']
} else { } else {
const setV = {} const setV = {}
setV[formField] = val[0][searchField] setV[formField] = val[0][searchField]
//setV['ppNumber'] = val[0]['ppNumber']
//setV['supplierCode'] = val[0]['supplierCode']
formRef.setValues(setV) formRef.setValues(setV)
} }
}) })
} }
// //
// const Echo = ['ppNumber','poLine', 'batch', 'altBatch', 'itemCode', 'itemName', 'itemDesc1', 'itemDesc2', 'projectCode', 'qty', 'uom'] const searchTableSuccessDetail = (formField, searchField, val, formRef ) => {
const Echo = [] nextTick(() => {
const setV = {}
setV[formField] = val[0][searchField]
formRef.setValues(setV)
})
}
const { tableObject, tableMethods } = useTable({ const { tableObject, tableMethods } = useTable({
getListApi: IssueRequestMainApi.getIssueRequestMainPage // getListApi: IssueRequestMainApi.getIssueRequestMainPage //

272
src/views/wms/issueManage/issue/issueRequestMain/issueRequestMain.data.ts

@ -1,8 +1,21 @@
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { dateFormatter } from '@/utils/formatTime' import { dateFormatter } from '@/utils/formatTime'
const { t } = useI18n() // 国际化
import * as getRequestsettingApi from '@/api/wms/requestsetting/index' import * as getRequestsettingApi from '@/api/wms/requestsetting/index'
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'
import * as WorkshopApi from '@/api/wms/workshop'
import { Workshop } from '@/views/wms/basicDataManage/factoryModeling/workshop/workshop.data'
import * as ItembasicApi from '@/api/wms/itembasic'
import { Itembasic } from '@/views/wms/basicDataManage/itemManage/itembasic/itembasic.data'
const { t } = useI18n() // 国际化
// 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值 // 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值
const queryParams = { const queryParams = {
pageSize:10, pageSize:10,
@ -28,6 +41,17 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
form: {
// labelMessage: '信息提示说明!!!',
componentProps: {
isSearchList: true, // 开启查询弹窗
searchListPlaceholder: '请选择车间代码', // 输入框占位文本
searchField: 'code', // 查询弹窗赋值字段
searchTitle: '车间信息', // 查询弹窗标题
searchAllSchemas: Workshop.allSchemas, // 查询弹窗所需类
searchPage: WorkshopApi.getWorkshopPage // 查询弹窗所需分页方法
}
}
}, },
{ {
label: '从仓库代码', label: '从仓库代码',
@ -36,6 +60,7 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isForm: false
}, },
{ {
label: '从库位类型范围', label: '从库位类型范围',
@ -48,6 +73,7 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isForm: false
}, },
{ {
label: '从库区代码范围', label: '从库区代码范围',
@ -56,6 +82,7 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isForm: false
}, },
{ {
label: '到仓库代码', label: '到仓库代码',
@ -64,6 +91,7 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isForm: false
}, },
{ {
label: '到库位类型范围', label: '到库位类型范围',
@ -75,6 +103,7 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isForm: false
}, },
{ {
label: '到库区代码范围', label: '到库区代码范围',
@ -83,6 +112,7 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isForm: false
}, },
{ {
label: '单据号', label: '单据号',
@ -107,7 +137,8 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
componentProps: { componentProps: {
disabled: true disabled: true
} }
} },
isForm: false
}, },
{ {
label: '备注', label: '备注',
@ -167,6 +198,7 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
valueFormat: 'x', valueFormat: 'x',
} }
}, },
isForm: false,
}, },
{ {
label: '截止时间', label: '截止时间',
@ -182,6 +214,7 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
form: { form: {
component: 'DatePicker', component: 'DatePicker',
componentProps: { componentProps: {
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',
@ -251,10 +284,11 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
isForm: false, isForm: false,
}, },
{ {
label: '自动提交', label: '使用在途库',
field: 'autoCommit', field: 'useOnTheWayLocation',
dictType: DICT_TYPE.TRUE_FALSE, dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string', dictClass: 'string',
isSearch: true,
isTable: true, isTable: true,
sort: 'custom', sort: 'custom',
table: { table: {
@ -262,17 +296,16 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
}, },
form: { form: {
component: 'Switch', component: 'Switch',
value: requestsettingData.autoCommit, value: 'TRUE',
componentProps: { componentProps: {
inactiveValue: 'FALSE', inactiveValue: 'FALSE',
activeValue: 'TRUE', activeValue: 'TRUE'
disabled: true
} }
} }
}, },
{ {
label: '自动通过', label: '自动提交',
field: 'autoAgree', field: 'autoCommit',
dictType: DICT_TYPE.TRUE_FALSE, dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string', dictClass: 'string',
isTable: true, isTable: true,
@ -282,7 +315,7 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
}, },
form: { form: {
component: 'Switch', component: 'Switch',
value: requestsettingData.autoAgree, value: requestsettingData.autoCommit,
componentProps: { componentProps: {
inactiveValue: 'FALSE', inactiveValue: 'FALSE',
activeValue: 'TRUE', activeValue: 'TRUE',
@ -291,8 +324,8 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
} }
}, },
{ {
label: '自动执行', label: '自动通过',
field: 'autoExecute', field: 'autoAgree',
dictType: DICT_TYPE.TRUE_FALSE, dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string', dictClass: 'string',
isTable: true, isTable: true,
@ -302,7 +335,7 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
}, },
form: { form: {
component: 'Switch', component: 'Switch',
value: requestsettingData.autoExecute, value: requestsettingData.autoAgree,
componentProps: { componentProps: {
inactiveValue: 'FALSE', inactiveValue: 'FALSE',
activeValue: 'TRUE', activeValue: 'TRUE',
@ -311,8 +344,8 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
} }
}, },
{ {
label: '直接生成记录', label: '自动执行',
field: 'directCreateRecord', field: 'autoExecute',
dictType: DICT_TYPE.TRUE_FALSE, dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string', dictClass: 'string',
isTable: true, isTable: true,
@ -322,7 +355,7 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
}, },
form: { form: {
component: 'Switch', component: 'Switch',
value: requestsettingData.directCreateRecord, value: requestsettingData.autoExecute,
componentProps: { componentProps: {
inactiveValue: 'FALSE', inactiveValue: 'FALSE',
activeValue: 'TRUE', activeValue: 'TRUE',
@ -331,11 +364,10 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
} }
}, },
{ {
label: '使用在途库', label: '直接生成记录',
field: 'useOnTheWayLocation', field: 'directCreateRecord',
dictType: DICT_TYPE.TRUE_FALSE, dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string', dictClass: 'string',
isSearch: true,
isTable: true, isTable: true,
sort: 'custom', sort: 'custom',
table: { table: {
@ -343,10 +375,11 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
}, },
form: { form: {
component: 'Switch', component: 'Switch',
value: 'TRUE', value: requestsettingData.directCreateRecord,
componentProps: { componentProps: {
inactiveValue: 'FALSE', inactiveValue: 'FALSE',
activeValue: 'TRUE' activeValue: 'TRUE',
disabled: true
} }
} }
}, },
@ -363,6 +396,9 @@ export const IssueRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
])) ]))
export const IssueRequestMainRules = reactive({ export const IssueRequestMainRules = reactive({
workshopCode: [
{ required: true, message: '请选择车间代码', trigger: 'change' }
],
fromWarehouseCode: [ fromWarehouseCode: [
{ required: true, message: '请输入从仓库代码', trigger: 'blur' } { required: true, message: '请输入从仓库代码', trigger: 'blur' }
], ],
@ -406,6 +442,25 @@ export const IssueRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
tableForm:{
isInpuFocusShow: true,
searchListPlaceholder: '请选择生产线代码', // 输入框占位文本
searchField: 'code', // 查询弹窗赋值字段
searchTitle: '生产线信息', // 查询弹窗标题
searchAllSchemas: Productionline.allSchemas, // 查询弹窗所需类
searchPage: ProductionlineApi.getProductionlinePage // 查询弹窗所需分页方法
},
form: {
// labelMessage: '信息提示说明!!!',
componentProps: {
isSearchList: true, // 开启查询弹窗
searchListPlaceholder: '请选择生产线代码', // 输入框占位文本
searchField: 'code', // 查询弹窗赋值字段
searchTitle: '生产线信息', // 查询弹窗标题
searchAllSchemas: Productionline.allSchemas, // 查询弹窗所需类
searchPage: ProductionlineApi.getProductionlinePage // 查询弹窗所需分页方法
}
}
}, },
{ {
label: '工位代码', label: '工位代码',
@ -414,6 +469,25 @@ export const IssueRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
tableForm:{
isInpuFocusShow: true,
searchListPlaceholder: '请选择工位代码', // 输入框占位文本
searchField: 'code', // 查询弹窗赋值字段
searchTitle: '工位信息', // 查询弹窗标题
searchAllSchemas: Workstation.allSchemas, // 查询弹窗所需类
searchPage: WorkstationApi.getWorkstationPage // 查询弹窗所需分页方法
},
form: {
// labelMessage: '信息提示说明!!!',
componentProps: {
isSearchList: true, // 开启查询弹窗
searchListPlaceholder: '请选择工位代码', // 输入框占位文本
searchField: 'code', // 查询弹窗赋值字段
searchTitle: '工位信息', // 查询弹窗标题
searchAllSchemas: Workstation.allSchemas, // 查询弹窗所需类
searchPage: WorkstationApi.getWorkstationPage // 查询弹窗所需分页方法
}
}
}, },
{ {
label: '包装号', label: '包装号',
@ -422,6 +496,8 @@ export const IssueRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isTableForm: false,
isForm: false
}, },
{ {
label: '器具号', label: '器具号',
@ -430,6 +506,8 @@ export const IssueRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isTableForm: false,
isForm: false
}, },
{ {
label: '批次', label: '批次',
@ -438,6 +516,8 @@ export const IssueRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isTableForm: false,
isForm: false
}, },
{ {
label: '库存状态', label: '库存状态',
@ -449,6 +529,8 @@ export const IssueRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isTableForm: false,
isForm: false
}, },
{ {
label: '到库位代码', label: '到库位代码',
@ -457,62 +539,70 @@ export const IssueRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isTableForm: false,
isForm: false
}, },
{ {
label: '单据号', label: '物品代码',
field: 'number', field: 'itemCode',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
isTableForm: false, tableForm:{
isInpuFocusShow: true,
isSearchList: true, // 开启查询弹窗
searchListPlaceholder: '请选择物品代码', // 输入框占位文本
searchField: 'code', // 查询弹窗赋值字段
searchTitle: '物品基础信息', // 查询弹窗标题
searchAllSchemas: Itembasic.allSchemas, // 查询弹窗所需类
searchPage: ItembasicApi.getItembasicPage // 查询弹窗所需分页方法
},
form: { form: {
// labelMessage: '信息提示说明!!!',
componentProps: { componentProps: {
disabled: true isSearchList: true, // 开启查询弹窗
searchListPlaceholder: '请选择物品代码', // 输入框占位文本
searchField: 'code', // 查询弹窗赋值字段
searchTitle: '物品基础信息', // 查询弹窗标题
searchAllSchemas: Itembasic.allSchemas, // 查询弹窗所需类
searchPage: ItembasicApi.getItembasicPage // 查询弹窗所需分页方法
} }
} }
}, },
{ {
label: '物品代码', label: '物品名称',
field: 'itemCode', field: 'itemName',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
isTableForm: false,
isForm: false
}, },
{ {
label: '备注', label: '物品描述1',
field: 'remark', field: 'itemDesc1',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
isTableForm: false,
isForm: false
}, },
{ {
label: '创建时间', label: '物品描述2',
field: 'createTime', field: 'itemDesc2',
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom', sort: 'custom',
table: { table: {
width: 180 width: 150
},
form: {
component: 'DatePicker',
componentProps: {
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
}
}, },
isTableForm: false, isTableForm: false,
isForm: false isForm: false
}, },
{ {
label: '创建者', label: '项目代码',
field: 'creator', field: 'projectCode',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
@ -521,71 +611,105 @@ export const IssueRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
isForm: false isForm: false
}, },
{ {
label: '物品名称', label: '数量',
field: 'itemName', field: 'qty',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
tableForm:{
type: 'InputNumber',
min: 1,
precision: 6
}
}, },
{ {
label: '物品描述1', label: '计量单位',
field: 'itemDesc1', field: 'uom',
dictType: DICT_TYPE.UOM,
dictClass: 'string',
isTable: true,
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
tableForm:{
type: 'Select',
}
}, },
{ {
label: '物品描述2', label: '从货主代码',
field: 'itemDesc2', field: 'fromOwnerCode',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
isTableForm: false,
isForm: false
}, },
{ {
label: '项目代码', label: '到货主代码',
field: 'projectCode', field: 'toOwnerCode',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
isTableForm: false,
isForm: false
}, },
{ {
label: '数量', label: '单据号',
field: 'qty', field: 'number',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
isTableForm: false,
form: {
componentProps: {
disabled: true
}
}
}, },
{ {
label: '计量单位', label: '备注',
field: 'uom', field: 'remark',
dictType: DICT_TYPE.UOM,
dictClass: 'string',
isTable: true,
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
}, },
{ {
label: '从货主代码', label: '创建时间',
field: 'fromOwnerCode', field: 'createTime',
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 180
},
form: {
component: 'DatePicker',
componentProps: {
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
}
}, },
isTableForm: false,
isForm: false
}, },
{ {
label: '到货主代码', label: '创建者',
field: 'toOwnerCode', field: 'creator',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
}, },
isTableForm: false,
isForm: false
}, },
{ {
label: '最后更新时间', label: '最后更新时间',
@ -634,6 +758,15 @@ export const IssueRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
//表单校验 //表单校验
export const IssueRequestDetailRules = reactive({ export const IssueRequestDetailRules = reactive({
productionLineCode: [
{ required: true, message: '请选择生产线代码', trigger: 'change' }
],
workStationCode: [
{ required: true, message: '请选择工位代码', trigger: 'change' }
],
itemCode: [
{ required: true, message: '请选择物品代码', trigger: 'change' }
],
packingNumber: [ packingNumber: [
{ required: true, message: '请输入包装号', trigger: 'blur' } { required: true, message: '请输入包装号', trigger: 'blur' }
], ],
@ -646,7 +779,10 @@ export const IssueRequestDetailRules = reactive({
toLocationCode: [ toLocationCode: [
{ required: true, message: '请输入到库位代码', trigger: 'blur' } { required: true, message: '请输入到库位代码', trigger: 'blur' }
], ],
itemCode: [ qty: [
{ required: true, message: '请输入物品代码', trigger: 'blur' } { required: true, message: '请输入数量', trigger: 'blur' }
],
uom: [
{ required: true, message: '请选择单位', trigger: 'change' }
], ],
}) })
Loading…
Cancel
Save