From e6d642202dd46d5998618688a504f98679e50104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E8=99=B9=E7=9D=BF?= <297504645@qq.com> Date: Tue, 16 Apr 2024 17:23:10 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90Nev-pc=E3=80=91=E6=9A=82=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fe/PC/src/router/index.js | 75 +-- fe/PC/src/utils/detailsTableColumns/index.js | 78 ++- fe/PC/src/utils/tableColumns/index.js | 240 +++----- fe/PC/src/utils/tabsDesTions/index.js | 217 +++---- .../dismantle/customerDismantleJob-new.vue | 451 ++++++++++++++ .../InventoryQuery/LibraryShiftJob.vue | 548 ------------------ .../InventoryQuery/LibraryShiftRequest.vue | 228 -------- .../transferLibJob.vue} | 83 +-- .../transferLib/transferLibNote.vue | 100 ++++ .../transferLib/transferLibRequest.vue | 100 ++++ .../materialIssueManage/ZS/IssueJobZS.vue | 538 ++--------------- .../materialIssueManage/ZS/IssueNoteZS.vue | 48 +- .../materialIssueManage/ZS/IssueRequestZS.vue | 130 +---- fe/PC/src/views/systemManage/pageLock.vue | 95 +++ 14 files changed, 1086 insertions(+), 1845 deletions(-) create mode 100644 fe/PC/src/views/finishedProductManage/dismantle/customerDismantleJob-new.vue delete mode 100644 fe/PC/src/views/inventoryManage/InventoryQuery/LibraryShiftJob.vue delete mode 100644 fe/PC/src/views/inventoryManage/InventoryQuery/LibraryShiftRequest.vue rename fe/PC/src/views/inventoryManage/{InventoryQuery/LibraryShiftNote.vue => transferLib/transferLibJob.vue} (56%) create mode 100644 fe/PC/src/views/inventoryManage/transferLib/transferLibNote.vue create mode 100644 fe/PC/src/views/inventoryManage/transferLib/transferLibRequest.vue create mode 100644 fe/PC/src/views/systemManage/pageLock.vue diff --git a/fe/PC/src/router/index.js b/fe/PC/src/router/index.js index 8c3d0e9fe..200c45b6c 100644 --- a/fe/PC/src/router/index.js +++ b/fe/PC/src/router/index.js @@ -190,39 +190,6 @@ export const constantRoutes = [ } }] }, - - { - path: '/', - component: Layout, - redirect: '/gridlayout', - hidden: true, - children: [{ - path: 'completDumpNoteZS', - component: () => import('@/views/finishedProductManage/completDump/completDumpNoteZS.vue'), - name: 'completDumpNoteZS', - meta: { - keepAlive : true, - title: '完工转储记录(注塑)', - icon: '完工转储申请', - } - }] - }, - // { - // path: '/', - // component: Layout, - // redirect: '/gridlayout', - // hidden: true, - // children: [{ - // path: 'FISDeliverJob', - // component: () => import('@/views/finishedProductManage/deliver/FISDeliverJob.vue'), - // name: 'FISDeliverJob', - // meta: { - // keepAlive : true, - // title: '成品发运任务', - // icon: '成品发运任务', - // } - // }] - // }, { path: '/', component: Layout, @@ -389,12 +356,12 @@ export const constantRoutes = [ redirect: '/gridlayout', hidden: true, children: [{ - path: 'LibraryShiftRequest', - component: () => import('@/views/inventoryManage/InventoryQuery/LibraryShiftRequest.vue'), - name: 'LibraryShiftRequest', + path: 'transferLibRequest', + component: () => import('@/views/inventoryManage/transferLib/transferLibRequest.vue'), + name: 'transferLibRequest', meta: { keepAlive : true, - title: '库存转移申请', + title: '业务库移申请', icon: '成品发运任务', } }] @@ -405,12 +372,12 @@ export const constantRoutes = [ redirect: '/gridlayout', hidden: true, children: [{ - path: 'LibraryShiftJob', - component: () => import('@/views/inventoryManage/InventoryQuery/LibraryShiftJob.vue'), - name: 'LibraryShiftJob', + path: 'transferLibJob', + component: () => import('@/views/inventoryManage/transferLib/transferLibJob.vue'), + name: 'transferLibJob', meta: { keepAlive : true, - title: '库存转移任务', + title: '业务库移任务', icon: '成品发运任务', } }] @@ -421,16 +388,32 @@ export const constantRoutes = [ redirect: '/gridlayout', hidden: true, children: [{ - path: 'LibraryShiftNote', - component: () => import('@/views/inventoryManage/InventoryQuery/LibraryShiftNote.vue'), - name: 'LibraryShiftNote', + path: 'transferLibNote', + component: () => import('@/views/inventoryManage/transferLib/transferLibNote.vue'), + name: 'transferLibNote', meta: { keepAlive : true, - title: '库存转移记录', + title: '业务库移记录', icon: '成品发运任务', } }] - }, + }, + { + path: '/', + component: Layout, + redirect: '/gridlayout', + hidden: true, + children: [{ + path: 'pageLock', + component: () => import('@/views/systemManage/pageLock.vue'), + name: 'pageLock', + meta: { + keepAlive : true, + title: '页面锁定控制', + icon: '成品发运任务', + } + }] + }, ] diff --git a/fe/PC/src/utils/detailsTableColumns/index.js b/fe/PC/src/utils/detailsTableColumns/index.js index 20882e81f..85d3f4df5 100644 --- a/fe/PC/src/utils/detailsTableColumns/index.js +++ b/fe/PC/src/utils/detailsTableColumns/index.js @@ -4193,43 +4193,65 @@ export const IssueNoteZP = [ // ************** 确定隐藏 ************************ ] -// 库存转移申请 -export const LibraryShiftRequest = [ - { label: "物品代码", prop: "itemCode" }, +// 业务库移申请 +export const transferLibRequest = [ + { label: "物品代码", prop: "itemCode", fixed: "left" }, { label: "物品名称", prop: "itemName" }, { label: "物品描述1", prop: "itemDesc1" }, { label: "物品描述2", prop: "itemDesc2" }, { label: "配置", prop: "item_configurationFromFE" }, - { label: "状态", prop: "status", type: "filter", filters: "openToClose" }, - { label: "叫料数量", prop: "qty" }, - { label: "单位", prop: "uom" }, - { label: "创建时间", prop: "creationTime", type: "dateTime" }, + { label: "状态", prop: "status", type: "filter", filters: "inventoryStage" }, + { label: "推荐批次", prop: "recommendLot" }, + { label: "实际批次", prop: "handledLot" }, + { label: "推荐数量", prop: 'recommendQty' }, + { label: "实际数量", prop: 'handledQty' }, + { label: "推荐箱码", prop: "recommendPackingCode" }, + { label: "实际箱码", prop: "handledPackingCode" }, + { label: "创建时间", prop: 'creationTime', type: "dateTime" }, { label: "创建者ID", prop: 'creatorId' }, - { label: "目标库位", prop: "toLocationCode" }, - { label: "目标ERP库位", prop: "toLocationErpCode" }, - { label: "生成任务数量", prop: 'issuedQty' }, - { label: "已收数量", prop: 'receivedQty' }, - { label: "单据号", prop: 'number' }, + { label: "在途库位", prop: 'onTheWayLocationCode' }, // ----------------------------------------------------------------------- - { label: "标包数量", prop: 'stdPackQty' }, + { label: "标包数量", prop: "stdPackQty" }, + { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, + { label: "上次修改者ID", prop: 'lastModifierId' }, + { label: "任务编号", prop: 'number',width: orderWidth }, + { label: "备注", prop: 'remark' }, + { label: "推荐库位", prop: 'recommendFromLocationCode' }, + { label: "推荐区域", prop: 'recommendFromLocationArea' }, + { label: "推荐分组", prop: 'recommendFromLocationGroup' }, + { label: "推荐ERP库位", prop: 'recommendFromLocationErpCode' }, + { label: "推荐仓库", prop: 'recommendFromWarehouseCode' }, + { label: "计量单位", prop: 'uom' }, + { label: "实际库位", prop: 'handledFromLocationCode' }, + { label: "实际区域", prop: 'handledFromLocationArea' }, + { label: "实际分组", prop: 'handledFromLocationGroup' }, + { label: "实际ERP库位", prop: 'handledFromLocationErpCode' }, + { label: "实际仓库", prop: 'handledFromWarehouseCode' }, + { label: "到库区", prop: 'toLocationArea' }, + { label: "到库位组", prop: 'toLocationGroup' }, + { label: "到ERP库位", prop: 'toLocationErpCode' }, + { label: "到仓库", prop: 'toWarehouseCode' }, + { label: "推荐供应商批次", prop: 'recommendSupplierBatch' }, + { label: "实际供应商批次", prop: 'handledSupplierBatch' }, + { label: "推荐到货时间", prop: 'recommendArriveDate', type: "dateTime" }, + { label: "实际到货时间", prop: 'handledArriveDate', type: "dateTime" }, + { label: "推荐生产时间", prop: 'recommendProduceDate', type: "dateTime" }, + { label: "实际生产时间", prop: 'handledProduceDate', type: "dateTime" }, + { label: "推荐过期时间", prop: 'recommendExpireDate', type: "dateTime" }, + { label: "实际过期时间", prop: 'handledExpireDate', type: "dateTime" }, + { label: "请求库位", prop: 'requestLocationCode' }, + { label: "到库位", prop: 'toLocationCode' }, { label: "生产线", prop: 'prodLine' }, - { label: "来源库区", prop: 'fromLocationArea' }, { label: "工作中心", prop: 'workStation' }, { label: "过期时间", prop: 'expiredTime' }, - { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, - { label: "上次修改者ID", prop: 'lastModifierId' }, - { label: "备注", prop: "remark" }, + { label: "工序", prop: 'operation' }, + { label: "取整后数量", prop: 'roundedQty' }, + { label: "计划开始时间", prop: 'planBeginTime' }, + { label: "每次配送数量", prop: 'deliveryQty' }, { label: "事务ID", prop: "tenantId" }, - { label: "请求未发", prop: 'toBeIssuedQty' }, - { label: "已发未收", prop: 'toBeReceivedQty' }, - { label: "请求未收", prop: 'notFinishQty' }, - // ************** 确定隐藏 ************************ - // { label: "主表ID", prop: "masterID" }, - // { label: "ID", prop: 'id' }, - // ************** 确定隐藏 ************************ ] -// 库存转移任务 -export const LibraryShiftJob = [ +// 业务库移任务 +export const transferLibJob = [ { label: "物品代码", prop: "itemCode", fixed: "left" }, { label: "物品名称", prop: "itemName" }, { label: "物品描述1", prop: "itemDesc1" }, @@ -4292,8 +4314,8 @@ export const LibraryShiftJob = [ // { label: "主表ID", prop: "masterID" }, // ************** 确定隐藏 ************************ ] -// 库存转移记录 -export const LibraryShiftNote = [ +// 业务库移记录 +export const transferLibNote = [ { label: "物品代码", prop: "itemCode",fixed: "left" }, { label: "物品名称", prop: "itemName" }, { label: "物品描述1", prop: "itemDesc1" }, diff --git a/fe/PC/src/utils/tableColumns/index.js b/fe/PC/src/utils/tableColumns/index.js index ee56109d9..abd450cfc 100644 --- a/fe/PC/src/utils/tableColumns/index.js +++ b/fe/PC/src/utils/tableColumns/index.js @@ -747,9 +747,9 @@ export const ProductionLineItem = [ { label: "物品描述1", prop: "itemDesc1" }, { label: "物品描述2", prop: "itemDesc2" }, { label: "生产线代码", prop: "prodLineCode" }, - { label: "完工库位列表", prop: "productLocationCodeListJson", type:"showDetail", isJson:true}, - { label: "原材料库位列表", prop: "rawLocationCodeListJson", type:"showDetail", isJson:true }, - { label: "线边库位列表", prop: "wipLocationCodeListJson", type:"showDetail", isJson:true }, + { label: "完工库位列表", prop: "productLocationCodeListJson", type:"showDetail", isJson:true,showProp:true}, + { label: "原材料库位列表", prop: "rawLocationCodeListJson", type:"showDetail", isJson:true,showProp:true }, + { label: "线边库位列表", prop: "wipLocationCodeListJson", type:"showDetail", isJson:true,showProp:true }, { label: "备注", prop: "remark" }, { label: "创建时间", prop: "creationTime", type: "dateTime" }, { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, @@ -3857,26 +3857,26 @@ export const Department = [ // 外部数据转换 export const dataExchangeFromOut = [ { label: _Dashboard.number, prop: "number" }, - { label: _Public.remark, prop: "remark", type:"showDetail" }, - { label: _Dashboard.dataType, prop: "dataType", type:"showDetail" }, + { label: _Public.remark, prop: "remark", type:"showDetail",showProp:true }, + { label: _Dashboard.dataType, prop: "dataType", type:"showDetail",showProp:true }, { label: _Dashboard.tableType, prop: "tableType" }, { label: _Dashboard.dataAction, prop: "dataAction" }, { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' }, { label: _Dashboard.status, prop: "status" }, - { label: _Dashboard.sourceSystem, prop: "sourceSystem", type:"showDetail" }, + { label: _Dashboard.sourceSystem, prop: "sourceSystem", type:"showDetail",showProp:true }, { label: _Dashboard.sourceDataId, prop: "sourceDataId" }, - { label: _Dashboard.sourceDataGroupCode, prop: "sourceDataGroupCode", type:"showDetail" }, - { label: _Dashboard.sourceDataDetailCode, prop: "sourceDataDetailCode", type:"showDetail" }, - { label: _Dashboard.sourceDataContent, prop: "sourceDataContent", type:"showJsonTable" }, + { label: _Dashboard.sourceDataGroupCode, prop: "sourceDataGroupCode", type:"showDetail",showProp:true }, + { label: _Dashboard.sourceDataDetailCode, prop: "sourceDataDetailCode", type:"showDetail",showProp:true }, + { label: _Dashboard.sourceDataContent, prop: "sourceDataContent", type:"showJsonTable",showProp:true }, { label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' }, { label: _Dashboard.writer, prop: "writer" }, - { label: _Dashboard.destinationSystem, prop: "destinationSystem", type:"showDetail" }, + { label: _Dashboard.destinationSystem, prop: "destinationSystem", type:"showDetail",showProp:true }, { label: _Dashboard.destinationDataId, prop: "destinationDataId" }, { label: _Dashboard.destinationDataContent, prop: "destinationDataContent", type:"showJsonTable" }, { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' }, { label: _Dashboard.reader, prop: "reader" }, { label: _Dashboard.errorCode, prop: "errorCode" }, - { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" }, + { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true }, { label: _Dashboard.retryTimes, prop: "retryTimes" }, // ************** 暂时隐藏 ************************ // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' }, @@ -3889,7 +3889,7 @@ export const dataExchangeFromOut = [ // 归档外部数据转换 export const dataExchangeFromOut_file = [ { label: _Dashboard.number, prop: "number" }, - { label: _Public.remark, prop: "remark", type:"showDetail" }, + { label: _Public.remark, prop: "remark", type:"showDetail",showProp:true }, { label: _Dashboard.dataType, prop: "dataType" }, { label: _Dashboard.tableType, prop: "tableType" }, { label: _Dashboard.dataAction, prop: "dataAction" }, @@ -3908,7 +3908,7 @@ export const dataExchangeFromOut_file = [ { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' }, { label: _Dashboard.reader, prop: "reader" }, { label: _Dashboard.errorCode, prop: "errorCode" }, - { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" }, + { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true }, { label: _Dashboard.retryTimes, prop: "retryTimes" }, // ************** 暂时隐藏 ************************ // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' }, @@ -3921,7 +3921,7 @@ export const dataExchangeFromOut_file = [ // WMS数据接收 export const comingToWms = [ { label: _Dashboard.number, prop: "number" }, - { label: _Public.remark, prop: "remark", type:"showDetail" }, + { label: _Public.remark, prop: "remark", type:"showDetail",showProp:true }, { label: _Dashboard.dataType, prop: "dataType" }, { label: _Dashboard.dataAction, prop: "dataAction" }, { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' }, @@ -3932,7 +3932,7 @@ export const comingToWms = [ { label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' }, { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' }, { label: _Dashboard.errorCode, prop: "errorCode" }, - { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" }, + { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true }, { label: _Dashboard.retryTimes, prop: "retryTimes" }, // ************** 暂时隐藏 ************************ // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' }, @@ -3945,7 +3945,7 @@ export const comingToWms = [ // 归档WMS数据接收 export const comingToWms_file = [ { label: _Dashboard.number, prop: "number" }, - { label: _Public.remark, prop: "remark", type:"showDetail" }, + { label: _Public.remark, prop: "remark", type:"showDetail",showProp:true }, { label: _Dashboard.dataType, prop: "dataType" }, { label: _Dashboard.dataAction, prop: "dataAction" }, { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' }, @@ -3956,7 +3956,7 @@ export const comingToWms_file = [ { label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' }, { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' }, { label: _Dashboard.errorCode, prop: "errorCode" }, - { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" }, + { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true }, { label: _Dashboard.retryTimes, prop: "retryTimes" }, // ************** 暂时隐藏 ************************ // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' }, @@ -3969,7 +3969,7 @@ export const comingToWms_file = [ // WMS数据转换 export const dataExchangeFromWms = [ { label: _Dashboard.number, prop: "number" }, - { label: _Public.remark, prop: "remark", type:"showDetail" }, + { label: _Public.remark, prop: "remark", type:"showDetail",showProp:true }, { label: _Dashboard.dataType, prop: "dataType" }, { label: _Dashboard.dataAction, prop: "dataAction" }, { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' }, @@ -3981,7 +3981,7 @@ export const dataExchangeFromWms = [ { label: _Dashboard.destinationSystem, prop: "destinationSystem" }, { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' }, { label: _Dashboard.errorCode, prop: "errorCode" }, - { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" }, + { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true }, { label: _Dashboard.retryTimes, prop: "retryTimes" }, // ************** 暂时隐藏 ************************ // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' }, @@ -3994,7 +3994,7 @@ export const dataExchangeFromWms = [ // 归档WMS数据转换 export const dataExchangeFromWms_file = [ { label: _Dashboard.number, prop: "number" }, - { label: _Public.remark, prop: "remark", type:"showDetail" }, + { label: _Public.remark, prop: "remark", type:"showDetail",showProp:true }, { label: _Dashboard.dataType, prop: "dataType" }, { label: _Dashboard.dataAction, prop: "dataAction" }, { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' }, @@ -4006,7 +4006,7 @@ export const dataExchangeFromWms_file = [ { label: _Dashboard.destinationSystem, prop: "destinationSystem" }, { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' }, { label: _Dashboard.errorCode, prop: "errorCode" }, - { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" }, + { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true }, { label: _Dashboard.retryTimes, prop: "retryTimes" }, // ************** 暂时隐藏 ************************ // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' }, @@ -4020,7 +4020,7 @@ export const dataExchangeFromWms_file = [ // 外部数据接收 export const comingFromOut = [ { label: _Dashboard.number, prop: "number" }, - { label: _Public.remark, prop: "remark", type:"showDetail" }, + { label: _Public.remark, prop: "remark", type:"showDetail",showProp:true }, { label: _Dashboard.dataType, prop: "dataType" }, { label: _Dashboard.tableType, prop: "tableType" }, { label: _Dashboard.dataAction, prop: "dataAction" }, @@ -4039,7 +4039,7 @@ export const comingFromOut = [ { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' }, { label: _Dashboard.reader, prop: "reader" }, { label: _Dashboard.errorCode, prop: "errorCode" }, - { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" }, + { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true }, { label: _Dashboard.retryTimes, prop: "retryTimes" }, // ************** 暂时隐藏 ************************ // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' }, @@ -4052,7 +4052,7 @@ export const comingFromOut = [ // 归档外部数据接收 export const comingFromOut_file = [ { label: _Dashboard.number, prop: "number" }, - { label: _Public.remark, prop: "remark", type:"showDetail" }, + { label: _Public.remark, prop: "remark", type:"showDetail",showProp:true }, { label: _Dashboard.dataType, prop: "dataType" }, { label: _Dashboard.tableType, prop: "tableType" }, { label: _Dashboard.dataAction, prop: "dataAction" }, @@ -4071,7 +4071,7 @@ export const comingFromOut_file = [ { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' }, { label: _Dashboard.reader, prop: "reader" }, { label: _Dashboard.errorCode, prop: "errorCode" }, - { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" }, + { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true }, { label: _Dashboard.retryTimes, prop: "retryTimes" }, // ************** 暂时隐藏 ************************ // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' }, @@ -4088,11 +4088,11 @@ export const exchangeDataMaintenancePage = [ { label: _Dashboard.dataAction, prop: "dataAction"}, { label: _Dashboard.dataContent, prop: "dataContent", type:"showJsonTable" }, { label: _Dashboard.dataIdentityCode, prop: "dataIdentityCode" }, - { label: _Dashboard.dataType, prop: "dataType", type:"showDetail" }, - { label: _Dashboard.destinationSystem, prop: "destinationSystem", type:"showDetail" }, + { label: _Dashboard.dataType, prop: "dataType", type:"showDetail",showProp:true }, + { label: _Dashboard.destinationSystem, prop: "destinationSystem", type:"showDetail" ,showProp:true}, { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' }, { label: _Dashboard.sourceSystem, prop: "sourceSystem" }, - { label: _Public.remark, prop: "remark", type:"showDetail" }, + { label: _Public.remark, prop: "remark", type:"showDetail" ,showProp:true}, { label: _Public.creationTime, prop: "creationTime",type:'dateTime' }, { label: _Public.creatorId, prop: "creatorId" }, { label: _Public.lastModificationTime, prop: "lastModificationTime",type:'dateTime' }, @@ -4252,76 +4252,45 @@ export const IssuePlanZS = [ // 人工注塑申请 export const IssueRequestZS = [ { - label: "叫料申请编号", + label: "申请编号", prop: "number", fixed: "left", type: "name", width: orderWidth }, { label: "状态", prop: "requestStatus", type: "tagFilter", filters: "requestStatus" }, - { label: "创建时间", prop: "creationTime", type: "dateTime" }, + { label: "来源库位列表", prop: 'fromLocationCodeJsonList',type:"showDetail",isJson:true,showProp:true }, + { label: "目标库位代", prop: "toLocationCode" }, + { label: "目标ERP库位", prop: "toLocationErpCode" }, { label: "操作员", prop: "worker" }, { label: "备注", prop: 'remark' }, - { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, { label: "生效日期", prop: 'activeDate', type: "dateTime" }, - // { label: "叫料类型", prop: 'type' }, - { label: "备料计划单号", prop: 'preparationPlanNumber',width: orderWidth }, - { label: "生产线", prop: 'prodLine' }, - { label: "车间", prop: 'workshop' }, - { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, - // ************** 确认隐藏 ************************ - // { label: "自动提交审批", prop: 'autoSubmit', type: "filter", filters: "whetherOrNot" }, - // { label: "自动审批通过", prop: 'autoAgree', type: "filter", filters: "whetherOrNot" }, - // { label: "自动执行", prop: 'autoHandle', type: "filter", filters: "whetherOrNot" }, - // { label: "自动完成任务", prop: 'autoCompleteJob', type: "filter", filters: "whetherOrNot" }, - // { label: "直接生成记录", prop: 'directCreateNote', type: "filter", filters: "whetherOrNot" }, - // { label: "创建者ID", prop: 'creatorId' }, - // { label: "事务ID", prop: "tenantId" }, - // ************** 确认隐藏 ************************ + { label: "创建时间", prop: "creationTime", type: "dateTime" }, + { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, ] // 人工注塑任务 export const IssueJobZS = [ { - label: "发料任务编号", + label: "任务编号", prop: "number", fixed: "left", type: "name", width: orderWidth }, + { label: "任务类型", prop: "jobType", type: "filter", filters: "taskType" }, { label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" }, - { label: "申请单号", prop: "materialRequestNumber",width: orderWidth }, - { label: "创建时间", prop: "creationTime", type: "dateTime" }, - { label: "完成时间", prop: "completeTime", type: "dateTime" }, - { label: "操作员", prop: 'worker' }, - { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, - { label: "备注", prop: 'remark' }, - { label: "仓库代码", prop: 'warehouseCode' }, - { label: "上游任务编号", prop: 'upStreamJobNumber' }, - { label: "任务类型", prop: 'jobType' }, - { label: "优先级", prop: 'priority' }, - { label: "优先级增量", prop: 'priorityIncrement' }, - { label: "工作组", prop: 'workGroupCode' }, - { label: "承接者用户名", prop: 'acceptUserName' }, - { label: "承接时间", prop: 'acceptTime', type: "dateTime" }, - { label: "完成者用户名", prop: 'completeUserName' }, - { label: "任务描述", prop: 'jobDescription' }, - { label: "叫料请求类型", prop: 'requestType' }, { label: "生产线", prop: 'prodLine' }, - { label: "车间", prop: 'workshop' }, { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, - // ************** 确认隐藏 ************************ - // { label: "是否自动完成", prop: 'isAutoComplete', type: "filter", filters: "whetherOrNot" }, - // { label: "创建者ID", prop: 'creatorId' }, - // { label: "上次修改者ID", prop: "lastModifierId" }, - // { label: "事务ID", prop: "tenantId" }, - // { label: "承接者ID", prop: 'acceptUserId' }, - // { label: "完成者", prop: 'completeUserId' }, - // ************** 确认隐藏 ************************ + { label: "操作员", prop: 'worker' }, + { label: "备注", prop: 'remark' }, + { label: "创建时间", prop: "creationTime", type: "dateTime" }, + { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, + ] // 人工注塑记录 export const IssueNoteZS = [ { - label: "发料记录单号", + label: "记录单号", prop: "number", fixed: "left", type: "name", @@ -4329,21 +4298,14 @@ export const IssueNoteZS = [ }, { label: "申请单号", prop: 'requestNumber',width: orderWidth }, { label: "任务单号", prop: 'jobNumber',width: orderWidth }, - { label: "创建时间", prop: "creationTime",type: "dateTime" }, { label: "操作员", prop: 'worker' }, - { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, { label: "备注", prop: 'remark' }, - { label: "生效日期", prop: 'activeDate',type: "dateTime" }, - { label: "车间", prop: 'workshop' }, - { label: "叫料请求类型", prop: 'requestType' }, { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, { label: "已确认", prop: 'confirmed',type: "filter", filters: "whetherOrNot" }, { label: "确认时间", prop: 'confirmTime' }, - // ************** 确认隐藏 ************************ - // { label: "创建者ID", prop: 'creatorId' }, - // { label: "上次修改者ID", prop: "lastModifierId" }, - // { label: "事务ID", prop: "tenantId" }, - // ************** 确认隐藏 ************************ + { label: "创建时间", prop: "creationTime",type: "dateTime" }, + { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, + ] // 人工发料申请(喷涂) @@ -4541,87 +4503,49 @@ export const IssueNoteZP = [ // ************** 确认隐藏 ************************ ] -// 库存转移申请 -export const LibraryShiftRequest = [ - { label: "申请编号", prop: "number" }, - { label: "状态", prop: "requestStatus",type: "filter", filters: "requestStatus" }, - { label: "创建时间", prop: "creationTime", type: "dateTime" }, +// 业务库移申请 +export const transferLibRequest = [ + { label: "申请编号", prop: "number",type:"name",fixed: "left", }, + { label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus" }, + { label: "回调服务名称", prop: "callServerName" }, + { label: "回调业务类型", prop: "callBusinessType" }, + { label: "传入申请单号", prop: "callRequestNumber" }, + { label: "传入任务单号", prop: "callJobNumber" }, + { label: "备注", prop: 'remark' }, { label: "操作员", prop: "worker" }, + { label: "生效日期", prop: 'activeDate', type: "dateTime" }, + { label: "创建时间", prop: "creationTime",type: "dateTime" }, { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, - { label: "上次修改者ID", prop: "lastModifierId" }, - { label: "自动提交审批", prop: 'autoSubmit', type: "filter", filters: "whetherOrNot" }, - { label: "自动审批通过", prop: 'autoAgree', type: "filter", filters: "whetherOrNot" }, - { label: "自动执行", prop: 'autoHandle', type: "filter", filters: "whetherOrNot" }, - { label: "自动完成任务", prop: 'autoCompleteJob', type: "filter", filters: "whetherOrNot" }, - { label: "直接生成记录", prop: 'directCreateNote', type: "filter", filters: "whetherOrNot" }, - { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, +] +// 业务库移任务 +export const transferLibJob = [ + { label: "任务编号", prop: "number",type:"name",fixed: "left", }, + { label: "申请单号", prop: 'requestNumber' }, + { label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" }, + { label: "回调服务名称", prop: "callServerName" }, + { label: "回调业务类型", prop: "callBusinessType" }, + { label: "传入申请单号", prop: "callRequestNumber" }, + { label: "传入任务单号", prop: "callJobNumber" }, { label: "备注", prop: 'remark' }, - { label: "创建者ID", prop: "creatorId" }, - { label: "事务ID", prop: "tenantId" }, + { label: "操作员", prop: "worker" }, { label: "生效日期", prop: 'activeDate', type: "dateTime" }, - { label: "备料计划单号", prop: 'preparationPlanNumber' }, - { label: "生产线", prop: 'prodLine' }, - { label: "车间", prop: 'workshop' }, - // ************** 确认隐藏 ************************ - // { label: "ID", prop: 'id' }, - // { label: "叫料类型", prop: 'type' }, - // ************** 确认隐藏 ************************ -] -// 库存转移任务 -export const LibraryShiftJob = [ - { label: "发料任务编号", prop: "number" }, - { label: "申请单号", prop: "materialRequestNumber" }, - { label: "状态", prop: "jobStatus", type: "filter", filters: "jobStatus" }, { label: "创建时间", prop: "creationTime",type: "dateTime" }, - { label: "操作员", prop: 'worker' }, - { label: "是否自动完成", prop: 'isAutoComplete', type: "filter", filters: "whetherOrNot" }, - { label: "承接用户", prop: 'acceptUserName' }, - { label: "承接时间", prop: 'acceptTime', type: "dateTime" }, - { label: "完成用户", prop: 'completeUserName' }, - { label: "完成时间", prop: "completeTime", type: "dateTime" }, - { label: "叫料请求类型", prop: 'requestType' }, - { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, - { label: "上次修改者ID", prop: "lastModifierId" }, - { label: "备注", prop: 'remark' }, - { label: "上游任务编号", prop: 'upStreamJobNumber',}, - { label: "任务类型", prop: "jobType", type: "filter", filters: "taskType" }, - { label: "优先级", prop: 'priority' }, - { label: "优先级增量", prop: 'priorityIncrement' }, - { label: "事务ID", prop: "tenantId" }, - { label: "工作组", prop: 'workGroupCode' }, - { label: "创建者ID", prop: "creatorId" }, - { label: "承接者ID", prop: 'acceptUserId' }, - { label: "完成者ID", prop: 'completeUserId' }, - { label: "任务描述", prop: 'jobDescription' }, - { label: "生产线", prop: 'prodLine' }, - { label: "车间", prop: 'workshop' }, - { label: "仓库代码", prop: 'warehouseCode' }, - // ************** 确认隐藏 ************************ - // { label: "ID", prop: 'id' }, - // ************** 确认隐藏 ************************ ] -// 库存转移记录 -export const LibraryShiftNote = [ - { label: "发料记录单号", prop: "number" }, +// 业务库移记录 +export const transferLibNote = [ + { label: "记录编号", prop: "number",type:"name",fixed: "left", }, { label: "申请单号", prop: 'requestNumber' }, { label: "任务单号", prop: 'jobNumber' }, - { label: "创建时间", prop: "creationTime",type: "dateTime" }, - { label: "操作员", prop: 'worker' }, - { label: "叫料请求类型", prop: 'requestType' }, - { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, - { label: "已确认", prop: 'confirmed',type: "filter", filters: "whetherOrNot" }, - { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, - { label: "上次修改者ID", prop: "lastModifierId" }, - { label: "创建者ID", prop: "creatorId" }, + { label: "回调服务名称", prop: "callServerName" }, + { label: "回调业务类型", prop: "callBusinessType" }, + { label: "传入申请单号", prop: "callRequestNumber" }, + { label: "传入任务单号", prop: "callJobNumber" }, { label: "备注", prop: 'remark' }, - { label: "事务ID", prop: "tenantId" }, + { label: "操作员", prop: "worker" }, { label: "生效日期", prop: 'activeDate', type: "dateTime" }, - { label: "车间", prop: 'workshop' }, - { label: "确认时间", prop: 'confirmTime', type: "dateTime" }, - // ************** 确认隐藏 ************************ - // { label: "ID", prop: 'id' }, - // ************** 确认隐藏 ************************ + { label: "创建时间", prop: "creationTime",type: "dateTime" }, + { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, ] // 三方库申请 @@ -4691,6 +4615,16 @@ export const customerReturnNote = [ { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] +// 页面锁定控制 +export const pageLock = [ + { label: "菜单编码", prop: "menuCode", fixed: "left", type: "name" }, + { label: "用户信息", prop: "userAccount" }, + { label: "登录时间", prop: "loginTime", type: "dateTime" }, + { label: "备注", prop: 'remark' }, + { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, + { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, +] + // 字段说明 diff --git a/fe/PC/src/utils/tabsDesTions/index.js b/fe/PC/src/utils/tabsDesTions/index.js index 169e94d81..d6889d6fd 100644 --- a/fe/PC/src/utils/tabsDesTions/index.js +++ b/fe/PC/src/utils/tabsDesTions/index.js @@ -3093,87 +3093,60 @@ export const completDumpNoteZP = [ { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, ] -// 人工发料申请(注塑) +// 人工注塑申请 export const IssueRequestZS = [ - { label: "申请编号", prop: "number" }, - { label: "状态", prop: "requestStatus",type: "filter", filters: "requestStatus" }, - { label: "创建时间", prop: "creationTime", type: "dateTime" }, + { + label: "申请编号", + prop: "number", + fixed: "left", + type: "name", + }, + { label: "状态", prop: "requestStatus", type: "tagFilter", filters: "requestStatus" }, + { label: "来源库位列表", prop: 'fromLocationCodeJsonList',type:"showDetail",isJson:true,showProp:true }, + { label: "目标库位代", prop: "toLocationCode" }, + { label: "目标ERP库位", prop: "toLocationErpCode" }, { label: "操作员", prop: "worker" }, - { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, - { label: "上次修改者ID", prop: "lastModifierId" }, - { label: "自动提交审批", prop: 'autoSubmit', type: "filter", filters: "whetherOrNot" }, - { label: "自动审批通过", prop: 'autoAgree', type: "filter", filters: "whetherOrNot" }, - { label: "自动执行", prop: 'autoHandle', type: "filter", filters: "whetherOrNot" }, - { label: "自动完成任务", prop: 'autoCompleteJob', type: "filter", filters: "whetherOrNot" }, - { label: "直接生成记录", prop: 'directCreateNote', type: "filter", filters: "whetherOrNot" }, - { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, { label: "备注", prop: 'remark' }, - { label: "创建者ID", prop: "creatorId" }, - { label: "事务ID", prop: "tenantId" }, { label: "生效日期", prop: 'activeDate', type: "dateTime" }, - { label: "备料计划单号", prop: 'preparationPlanNumber' }, - { label: "生产线", prop: 'prodLine' }, - { label: "车间", prop: 'workshop' }, - // ************** 确认隐藏 ************************ - // { label: "ID", prop: 'id' }, - // { label: "叫料类型", prop: 'type' }, - // ************** 确认隐藏 ************************ -] -// 人工发料任务(注塑) -export const IssueJobZS = [ - { label: "发料任务编号", prop: "number" }, - { label: "申请单号", prop: "materialRequestNumber" }, - { label: "状态", prop: "jobStatus", type: "filter", filters: "jobStatus" }, - { label: "创建时间", prop: "creationTime",type: "dateTime" }, - { label: "操作员", prop: 'worker' }, - { label: "是否自动完成", prop: 'isAutoComplete', type: "filter", filters: "whetherOrNot" }, - { label: "承接用户", prop: 'acceptUserName' }, - { label: "承接时间", prop: 'acceptTime', type: "dateTime" }, - { label: "完成用户", prop: 'completeUserName' }, - { label: "完成时间", prop: "completeTime", type: "dateTime" }, - { label: "叫料请求类型", prop: 'requestType' }, - { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, + { label: "创建时间", prop: "creationTime", type: "dateTime" }, { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, - { label: "上次修改者ID", prop: "lastModifierId" }, - { label: "备注", prop: 'remark' }, - { label: "上游任务编号", prop: 'upStreamJobNumber',}, +] +// 人工注塑任务 +export const IssueJobZS = [ + { + label: "任务编号", + prop: "number", + fixed: "left", + type: "name", + }, { label: "任务类型", prop: "jobType", type: "filter", filters: "taskType" }, - { label: "优先级", prop: 'priority' }, - { label: "优先级增量", prop: 'priorityIncrement' }, - { label: "事务ID", prop: "tenantId" }, - { label: "工作组", prop: 'workGroupCode' }, - { label: "创建者ID", prop: "creatorId" }, - { label: "承接者ID", prop: 'acceptUserId' }, - { label: "完成者ID", prop: 'completeUserId' }, - { label: "任务描述", prop: 'jobDescription' }, + { label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" }, { label: "生产线", prop: 'prodLine' }, - { label: "车间", prop: 'workshop' }, - { label: "仓库代码", prop: 'warehouseCode' }, - // ************** 确认隐藏 ************************ - // { label: "ID", prop: 'id' }, - // ************** 确认隐藏 ************************ + { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, + { label: "操作员", prop: 'worker' }, + { label: "备注", prop: 'remark' }, + { label: "创建时间", prop: "creationTime", type: "dateTime" }, + { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, + ] -// 人工发料记录(注塑) +// 人工注塑记录 export const IssueNoteZS = [ - { label: "发料记录单号", prop: "number" }, + { + label: "记录单号", + prop: "number", + fixed: "left", + type: "name", + }, { label: "申请单号", prop: 'requestNumber' }, { label: "任务单号", prop: 'jobNumber' }, - { label: "创建时间", prop: "creationTime",type: "dateTime" }, { label: "操作员", prop: 'worker' }, - { label: "叫料请求类型", prop: 'requestType' }, + { label: "备注", prop: 'remark' }, { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, { label: "已确认", prop: 'confirmed',type: "filter", filters: "whetherOrNot" }, + { label: "确认时间", prop: 'confirmTime' }, + { label: "创建时间", prop: "creationTime",type: "dateTime" }, { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, - { label: "上次修改者ID", prop: "lastModifierId" }, - { label: "创建者ID", prop: "creatorId" }, - { label: "备注", prop: 'remark' }, - { label: "事务ID", prop: "tenantId" }, - { label: "生效日期", prop: 'activeDate', type: "dateTime" }, - { label: "车间", prop: 'workshop' }, - { label: "确认时间", prop: 'confirmTime', type: "dateTime" }, - // ************** 确认隐藏 ************************ - // { label: "ID", prop: 'id' }, - // ************** 确认隐藏 ************************ + ] // 人工发料申请(喷涂) @@ -3353,87 +3326,49 @@ export const IssueNoteZP = [ // ************** 确认隐藏 ************************ ] -// 库存转移申请 -export const LibraryShiftRequest = [ - { label: "申请编号", prop: "number" }, - { label: "状态", prop: "requestStatus",type: "filter", filters: "requestStatus" }, - { label: "创建时间", prop: "creationTime", type: "dateTime" }, +// 业务库移申请 +export const transferLibRequest = [ + { label: "申请编号", prop: "number",type:"name",fixed: "left", }, + { label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus" }, + { label: "回调服务名称", prop: "callServerName" }, + { label: "回调业务类型", prop: "callBusinessType" }, + { label: "传入申请单号", prop: "callRequestNumber" }, + { label: "传入任务单号", prop: "callJobNumber" }, + { label: "备注", prop: 'remark' }, { label: "操作员", prop: "worker" }, + { label: "生效日期", prop: 'activeDate', type: "dateTime" }, + { label: "创建时间", prop: "creationTime",type: "dateTime" }, { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, - { label: "上次修改者ID", prop: "lastModifierId" }, - { label: "自动提交审批", prop: 'autoSubmit', type: "filter", filters: "whetherOrNot" }, - { label: "自动审批通过", prop: 'autoAgree', type: "filter", filters: "whetherOrNot" }, - { label: "自动执行", prop: 'autoHandle', type: "filter", filters: "whetherOrNot" }, - { label: "自动完成任务", prop: 'autoCompleteJob', type: "filter", filters: "whetherOrNot" }, - { label: "直接生成记录", prop: 'directCreateNote', type: "filter", filters: "whetherOrNot" }, - { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, +] +// 业务库移任务 +export const transferLibJob = [ + { label: "任务编号", prop: "number",type:"name",fixed: "left", }, + { label: "申请单号", prop: 'requestNumber' }, + { label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" }, + { label: "回调服务名称", prop: "callServerName" }, + { label: "回调业务类型", prop: "callBusinessType" }, + { label: "传入申请单号", prop: "callRequestNumber" }, + { label: "传入任务单号", prop: "callJobNumber" }, { label: "备注", prop: 'remark' }, - { label: "创建者ID", prop: "creatorId" }, - { label: "事务ID", prop: "tenantId" }, + { label: "操作员", prop: "worker" }, { label: "生效日期", prop: 'activeDate', type: "dateTime" }, - { label: "备料计划单号", prop: 'preparationPlanNumber' }, - { label: "生产线", prop: 'prodLine' }, - { label: "车间", prop: 'workshop' }, - // ************** 确认隐藏 ************************ - // { label: "ID", prop: 'id' }, - // { label: "叫料类型", prop: 'type' }, - // ************** 确认隐藏 ************************ -] -// 库存转移任务 -export const LibraryShiftJob = [ - { label: "发料任务编号", prop: "number" }, - { label: "申请单号", prop: "materialRequestNumber" }, - { label: "状态", prop: "jobStatus", type: "filter", filters: "jobStatus" }, { label: "创建时间", prop: "creationTime",type: "dateTime" }, - { label: "操作员", prop: 'worker' }, - { label: "是否自动完成", prop: 'isAutoComplete', type: "filter", filters: "whetherOrNot" }, - { label: "承接用户", prop: 'acceptUserName' }, - { label: "承接时间", prop: 'acceptTime', type: "dateTime" }, - { label: "完成用户", prop: 'completeUserName' }, - { label: "完成时间", prop: "completeTime", type: "dateTime" }, - { label: "叫料请求类型", prop: 'requestType' }, - { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, - { label: "上次修改者ID", prop: "lastModifierId" }, - { label: "备注", prop: 'remark' }, - { label: "上游任务编号", prop: 'upStreamJobNumber',}, - { label: "任务类型", prop: "jobType", type: "filter", filters: "taskType" }, - { label: "优先级", prop: 'priority' }, - { label: "优先级增量", prop: 'priorityIncrement' }, - { label: "事务ID", prop: "tenantId" }, - { label: "工作组", prop: 'workGroupCode' }, - { label: "创建者ID", prop: "creatorId" }, - { label: "承接者ID", prop: 'acceptUserId' }, - { label: "完成者ID", prop: 'completeUserId' }, - { label: "任务描述", prop: 'jobDescription' }, - { label: "生产线", prop: 'prodLine' }, - { label: "车间", prop: 'workshop' }, - { label: "仓库代码", prop: 'warehouseCode' }, - // ************** 确认隐藏 ************************ - // { label: "ID", prop: 'id' }, - // ************** 确认隐藏 ************************ ] -// 库存转移记录 -export const LibraryShiftNote = [ - { label: "发料记录单号", prop: "number" }, +// 业务库移记录 +export const transferLibNote = [ + { label: "记录编号", prop: "number",type:"name",fixed: "left", }, { label: "申请单号", prop: 'requestNumber' }, { label: "任务单号", prop: 'jobNumber' }, - { label: "创建时间", prop: "creationTime",type: "dateTime" }, - { label: "操作员", prop: 'worker' }, - { label: "叫料请求类型", prop: 'requestType' }, - { label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" }, - { label: "已确认", prop: 'confirmed',type: "filter", filters: "whetherOrNot" }, - { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, - { label: "上次修改者ID", prop: "lastModifierId" }, - { label: "创建者ID", prop: "creatorId" }, + { label: "回调服务名称", prop: "callServerName" }, + { label: "回调业务类型", prop: "callBusinessType" }, + { label: "传入申请单号", prop: "callRequestNumber" }, + { label: "传入任务单号", prop: "callJobNumber" }, { label: "备注", prop: 'remark' }, - { label: "事务ID", prop: "tenantId" }, + { label: "操作员", prop: "worker" }, { label: "生效日期", prop: 'activeDate', type: "dateTime" }, - { label: "车间", prop: 'workshop' }, - { label: "确认时间", prop: 'confirmTime', type: "dateTime" }, - // ************** 确认隐藏 ************************ - // { label: "ID", prop: 'id' }, - // ************** 确认隐藏 ************************ + { label: "创建时间", prop: "creationTime",type: "dateTime" }, + { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" }, ] // 三方库申请 @@ -3501,4 +3436,14 @@ export const customerReturnNote = [ { label: "退料时间", prop: 'returnTime', type: "dateTime" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, +] + +// 页面锁定控制 +export const pageLock = [ + { label: "菜单编码", prop: "menuCode", fixed: "left", type: "name" }, + { label: "用户信息", prop: "userAccount" }, + { label: "登录时间", prop: "loginTime", type: "dateTime" }, + { label: "备注", prop: 'remark' }, + { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, + { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] \ No newline at end of file diff --git a/fe/PC/src/views/finishedProductManage/dismantle/customerDismantleJob-new.vue b/fe/PC/src/views/finishedProductManage/dismantle/customerDismantleJob-new.vue new file mode 100644 index 000000000..24505af4b --- /dev/null +++ b/fe/PC/src/views/finishedProductManage/dismantle/customerDismantleJob-new.vue @@ -0,0 +1,451 @@ + + + \ No newline at end of file diff --git a/fe/PC/src/views/inventoryManage/InventoryQuery/LibraryShiftJob.vue b/fe/PC/src/views/inventoryManage/InventoryQuery/LibraryShiftJob.vue deleted file mode 100644 index f34d6a0f8..000000000 --- a/fe/PC/src/views/inventoryManage/InventoryQuery/LibraryShiftJob.vue +++ /dev/null @@ -1,548 +0,0 @@ - - - \ No newline at end of file diff --git a/fe/PC/src/views/inventoryManage/InventoryQuery/LibraryShiftRequest.vue b/fe/PC/src/views/inventoryManage/InventoryQuery/LibraryShiftRequest.vue deleted file mode 100644 index 44f512b9b..000000000 --- a/fe/PC/src/views/inventoryManage/InventoryQuery/LibraryShiftRequest.vue +++ /dev/null @@ -1,228 +0,0 @@ - - - \ No newline at end of file diff --git a/fe/PC/src/views/inventoryManage/InventoryQuery/LibraryShiftNote.vue b/fe/PC/src/views/inventoryManage/transferLib/transferLibJob.vue similarity index 56% rename from fe/PC/src/views/inventoryManage/InventoryQuery/LibraryShiftNote.vue rename to fe/PC/src/views/inventoryManage/transferLib/transferLibJob.vue index 286c5a1b7..8530c6deb 100644 --- a/fe/PC/src/views/inventoryManage/InventoryQuery/LibraryShiftNote.vue +++ b/fe/PC/src/views/inventoryManage/transferLib/transferLibJob.vue @@ -24,18 +24,32 @@ :httpOverallSearchData="httpOverallSearchData" > - + + + \ No newline at end of file diff --git a/fe/PC/src/views/inventoryManage/transferLib/transferLibNote.vue b/fe/PC/src/views/inventoryManage/transferLib/transferLibNote.vue new file mode 100644 index 000000000..e682cf4fd --- /dev/null +++ b/fe/PC/src/views/inventoryManage/transferLib/transferLibNote.vue @@ -0,0 +1,100 @@ + + + \ No newline at end of file diff --git a/fe/PC/src/views/inventoryManage/transferLib/transferLibRequest.vue b/fe/PC/src/views/inventoryManage/transferLib/transferLibRequest.vue new file mode 100644 index 000000000..d6103a846 --- /dev/null +++ b/fe/PC/src/views/inventoryManage/transferLib/transferLibRequest.vue @@ -0,0 +1,100 @@ + + + \ No newline at end of file diff --git a/fe/PC/src/views/materialIssueManage/ZS/IssueJobZS.vue b/fe/PC/src/views/materialIssueManage/ZS/IssueJobZS.vue index 28ff10af0..57a42b311 100644 --- a/fe/PC/src/views/materialIssueManage/ZS/IssueJobZS.vue +++ b/fe/PC/src/views/materialIssueManage/ZS/IssueJobZS.vue @@ -24,20 +24,21 @@ :httpOverallSearchData="httpOverallSearchData" > - - + + + - - - - + > \ No newline at end of file diff --git a/fe/PC/src/views/materialIssueManage/ZS/IssueNoteZS.vue b/fe/PC/src/views/materialIssueManage/ZS/IssueNoteZS.vue index 870cac7b0..d95587a82 100644 --- a/fe/PC/src/views/materialIssueManage/ZS/IssueNoteZS.vue +++ b/fe/PC/src/views/materialIssueManage/ZS/IssueNoteZS.vue @@ -63,7 +63,7 @@ export default { ], data () { return { - URL: 'wms/store/issue-note', + URL: 'wms/store/injection-note', //常用按钮数据 currenButtonData: [ this.defaultExportBtn(),//导出 @@ -71,56 +71,14 @@ export default { this.defaultFreshBtn(),//刷新 this.defaultFilterBtn(),//筛选 ], - DrawerButtonData: [ - { - type: 'info', - icon: 'el-icon-printer', - label: '打印', - hide: false, - name: "print", - size: 'mini' - }, - ] + DrawerButtonData: [] }; }, mounted () { this.paging(); }, methods: { - //渲染数据 - paging(callback) { - this.Loading.tableLoading = true; - this.PageListParams.SkipCount = (this.oldSkipCount - 1) * this.PageListParams.MaxResultCount - // 叫料请求类型: 人工拉动:Issue_Manual; 线边拉动:Issue_WIP; 直接发料:Direct_Issue - let params = { - requestType: 'Issue_Manual' - } - materialRequestByType(this.PageListParams, this.URL + '/by-type', params).then(res => { - this.tableData = res.items - this.totalCount = res.totalCount - this.pagingCallback(callback) - }).catch(err => { - this.Loading.tableLoading = false - }) - }, - drawerbutton (val) { - // 打印 - if(val == 'print'){ - let _propsData = JSON.parse(JSON.stringify(this.tableDataDetails)) - // _propsData.title = "送货单" - _propsData.title = "线边仓领料单" - _propsData.details.forEach(item=>{ - item.fromLot = item.fromLot + " " - }) - let _option = { - number:"requestNumber", - } - let data = initPrintAllData(_propsData,'xbcll.rdlx',false,_option); - this.Print(data) - } else { - drawerMixins.methods.drawerbutton(val, this) - } - } + }, }; diff --git a/fe/PC/src/views/materialIssueManage/ZS/IssueRequestZS.vue b/fe/PC/src/views/materialIssueManage/ZS/IssueRequestZS.vue index 1876c404b..80d3480fe 100644 --- a/fe/PC/src/views/materialIssueManage/ZS/IssueRequestZS.vue +++ b/fe/PC/src/views/materialIssueManage/ZS/IssueRequestZS.vue @@ -47,7 +47,7 @@ :tabsDesTions="tabsDesTions" :Butttondata="DrawerButtonData" @drawerShut="(val) => (displayDialog.detailsDialog = val)" - @drawerbutton="drawerbutton" + @drawerbutton="drawerbuttonHandle" @close-value="closeValue" :currenButtonData="currenButtonData" :tableColumns="detailsTableColumns" @@ -59,14 +59,12 @@ + \ No newline at end of file