From 0a8a3f71f2e50f0603077197d9b1971431a64b36 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期三, 28 八月 2024 23:24:33 +0800 Subject: [PATCH] 条码规则更新 --- src/views/tigerprojects/system/lowcode/entityts/BIZ_MES_WO_BATCH.ts | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 50 insertions(+), 10 deletions(-) diff --git a/src/views/tigerprojects/system/lowcode/entityts/BIZ_MES_WO_BATCH.ts b/src/views/tigerprojects/system/lowcode/entityts/BIZ_MES_WO_BATCH.ts index 213042c..fb85766 100644 --- a/src/views/tigerprojects/system/lowcode/entityts/BIZ_MES_WO_BATCH.ts +++ b/src/views/tigerprojects/system/lowcode/entityts/BIZ_MES_WO_BATCH.ts @@ -4,7 +4,7 @@ * @version: * @Date: 2024-06-19 20:34:27 * @LastEditors: Ben Lin - * @LastEditTime: 2024-08-22 10:26:40 + * @LastEditTime: 2024-08-28 08:53:22 */ import { Tag, Tooltip } from 'ant-design-vue'; @@ -17,6 +17,8 @@ import { CustModalParams, FunctionType } from '/@/api/tigerapi/model/systemModel'; import { useForm } from '/@/components/Form'; import { useMessage } from '/@/hooks/web/useMessage'; +import { UpdateWoStatus } from '/@/api/tigerapi/mes/wo'; +import { useUserStore } from '/@/store/modules/user'; const { getLocale } = useLocale(); const { createMessage, createErrorModal } = useMessage(); @@ -24,11 +26,11 @@ function _default() { const ActionColumn: BasicColumn = { - width: 80, + width: 160, title: '鎿嶄綔', dataIndex: 'action', slots: { customRender: 'action' }, - fixed: undefined, + fixed: 'right', }; /** @@ -53,7 +55,12 @@ data.map((x) => { if (x.name == 'handlePause') { x.onClick = handlePause.bind(null, args, params); + x.color = 'error' x.tooltip = '鏆傚仠'; + } + if (x.name == 'handleStart') { + x.onClick = handleStart.bind(null, args, params); + x.tooltip = '鍙栨秷鏆傚仠'; } if (x.name == 'handleRelease') { x.onClick = handleRelease.bind(null, args, params); @@ -363,29 +370,54 @@ */ function handlePause(args, params: Recordable) { const reload = args[1]; - if (params['record'].STATUS == 0) { + if (params['record'].STATUS != 3) { createErrorModal({ title: t('璀﹀憡'), - content: t('宸ュ崟鏄垵濮嬪寲鐘舵�侊紝涓嶈兘鏆傚仠锛�'), + content: t('宸ュ崟涓嶆槸鐢熶骇涓姸鎬侊紝涓嶈兘鏆傚仠锛�'), getContainer: () => document.body, }); return; } - if (params['record'].STATUS == 5) { + // params['record'].STATUS = 4; + // SaveEntity(params['record'], true, 'BIZ_MES_WO_BATCH').then((action) => { + // if (action.IsSuccessed) { + // createMessage.success(t('宸叉殏鍋�')); + // reload(); + // } else { + // createMessage.success(t('鏆傚仠鎿嶄綔澶辫触')); + // } + // }); + UpdateWoStatus({ + UserId: useUserStore().getUserInfo.userId as string, + WorkOrder: params['record'].ORDER_NO, + Status: -1, + RouteStatus: 0, + }); + } + + /** + * @description: 宸ュ崟鍙栨秷鏆傚仠鏂规硶 + * @param {*} args + * @param {Recordable} params + * @return {*} + */ + function handleStart(args, params: Recordable) { + const reload = args[1]; + if (params['record'].STATUS != 4) { createErrorModal({ title: t('璀﹀憡'), - content: t('宸ュ崟鏄畬鎴愮姸鎬侊紝涓嶈兘鏆傚仠锛�'), + content: t('宸ュ崟涓嶆槸鏆傚仠鐘舵�侊紝涓嶈兘鍙栨秷鏆傚仠锛�'), getContainer: () => document.body, }); return; } - params['record'].STATUS = 4; + params['record'].STATUS = 3; SaveEntity(params['record'], true, 'BIZ_MES_WO_BATCH').then((action) => { if (action.IsSuccessed) { - createMessage.success(t('宸叉殏鍋�')); + createMessage.success(t('宸插彇娑堟殏鍋�')); reload(); } else { - createMessage.success(t('鏆傚仠鎿嶄綔澶辫触')); + createMessage.success(t('鍙栨秷鏆傚仠鎿嶄綔澶辫触')); } }); } @@ -398,6 +430,14 @@ */ function handleRelease(args, params: Recordable) { const openCustModal = args[7]; + if (params['record'].STATUS != 0) { + createErrorModal({ + title: t('璀﹀憡'), + content: t('宸ュ崟涓嶆槸鍒濆鐘舵�侊紝涓嶈兘涓嬪彂锛�'), + getContainer: () => document.body, + }); + return; + } openCustModal(true, { isUpdate: true, //鏄惁鏇存柊鎿嶄綔 ctype: 'BIZ_MES_WO_BATCH', //鏄摢涓〉闈� -- Gitblit v1.9.3