From ec0d91353b767f089fa72f3cd1eb62568852710b Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期四, 22 八月 2024 10:39:30 +0800 Subject: [PATCH] 工单管理增加取消下发功能 --- src/views/tigerprojects/system/lowcode/entityts/BIZ_MES_WO.ts | 28 ++++++++++------------------ 1 files changed, 10 insertions(+), 18 deletions(-) diff --git a/src/views/tigerprojects/system/lowcode/entityts/BIZ_MES_WO.ts b/src/views/tigerprojects/system/lowcode/entityts/BIZ_MES_WO.ts index d412c34..319c207 100644 --- a/src/views/tigerprojects/system/lowcode/entityts/BIZ_MES_WO.ts +++ b/src/views/tigerprojects/system/lowcode/entityts/BIZ_MES_WO.ts @@ -4,15 +4,13 @@ * @version: * @Date: 2024-06-19 20:34:27 * @LastEditors: Ben Lin - * @LastEditTime: 2024-07-22 16:38:10 + * @LastEditTime: 2024-08-13 15:49:49 */ import { Ref, h, ref, render, unref } from 'vue'; import { GetEnum, SaveEntity, convertToTree, getEntity } from '/@/api/tigerapi/system'; import { useLocale } from '/@/locales/useLocale'; -import { isNullOrEmpty, isNullOrUnDef } from '/@/utils/is'; import { useI18n } from '/@/hooks/web/useI18n'; -import { NavItem } from '/@/api/tigerapi/model/basModel'; import { useMessage } from '/@/hooks/web/useMessage'; import { useModal } from '/@/components/Modal'; import { ActionItem, BasicColumn, FormSchema } from '/@/components/Table'; @@ -22,8 +20,6 @@ import { CustModalParams, FunctionType } from '/@/api/tigerapi/model/systemModel'; import { SaveMesBatchWo } from '/@/api/tigerapi/mes/wo'; import { useForm } from '/@/components/Form/index'; -import { uploadApi } from '/@/api/sys/upload'; -import { initRoute } from '../data'; import { SP_MES_PROD2WO } from '/@/api/tigerapi/mes/router'; import { cloneDeep } from 'lodash-es'; @@ -31,14 +27,6 @@ const { createErrorModal } = useMessage(); const { getLocale } = useLocale(); function _default() { - /* 瀹氫箟鍙橀噺 */ - const isNormal = (type: number) => type === 0; - const isScan = (type: number) => type === 1; - const isAssy = (type: number) => type === 2; - const isTest = (type: number) => type === 3; - const isAudit = (type: number) => type === 4; - const isPrint = (type: number) => type === 5; - const isPackage = (type: number) => type === 6; const ActionColumn: BasicColumn = { width: 180, title: '鎿嶄綔', @@ -55,7 +43,7 @@ * @description: 鑾峰彇鏂板鎸夐挳鐨勮涓� * @return {*} */ - CreateAction: (fnName: string) => { + CreateAction: (type: string) => { return { action: 'drawer', //drawer(鎵撳紑宸︿晶鎶藉眽妗�) | go(璺宠浆鍒版柊鐨勯〉闈�) }; @@ -332,7 +320,7 @@ CUST_CODE: wo.CUST_CODE, FACTORY: wo.FACTORY, WS_CODE: wo.WS_CODE, - ACT_LINE: form.PLAN_LINE, + ACT_LINE: form.ACT_LINE, STD_WORKER_QTY: wo.STD_WORKER_QTY, ACT_WORKER_QTY: wo.ACT_WORKER_QTY, RELEASE_TIME: new Date(), @@ -381,6 +369,7 @@ keyFieldValues: { ORDER_NO: params['record']['ORDER_NO'] }, colSlots: params['colSlots'].value, SessionName: 'BIZ_MES_WO_BATCH_update', + ifSave: false, }; // 灏嗗璞¤浆鎹负JSON瀛楃涓插苟淇濆瓨鍒皊essionStorage sessionStorage.removeItem(`${id.SessionName}_params`); @@ -430,11 +419,14 @@ CODE: params['record'].ORDER_NO, Title: `宸ュ崟[${params['record'].ORDER_NO}]宸ヨ壓缁戝畾`, colSlots: params['colSlots'].value, /* 琛ㄦ牸鍐呯殑鏌ヨ琛ㄥ崟瀛楁鐨勬彃妲藉垪琛紝涓�鑸敤浜庡脊鍑洪�夋嫨妗嗘寜閽� */ - crudColSlots: [] /* 澧炲垹鏀硅〃鍗曞瓧娈电殑鎻掓Ы鍒楄〃锛屼竴鑸敤浜庡脊鍑洪�夋嫨妗嗘寜閽� */, + crudColSlots: {BAS_PKG_DTL:['BAS_LABEL_TEMP1add'], ItemCode: ['BAS_CODE_RULE1add']} /* 澧炲垹鏀硅〃鍗曞瓧娈电殑鎻掓Ы鍒楄〃锛屼竴鑸敤浜庡脊鍑洪�夋嫨妗嗘寜閽� */, + OtherTableName: ['BAS_PKG_DTL', 'ItemCode'], /* 鑷畾涔夋樉绀哄垪琛ㄧ殑琛ㄥ悕锛岃窡涓婇潰澧炲垹鏀圭殑琛ㄥ悕涓�鑷达紝鏈夊涓氨鏀惧垪琛ㄤ腑 */ dense: true, pageTitle: `宸ュ崟宸ヨ壓缁戝畾`, pageContent: `杩欓噷鏄鐞嗗伐鍗曠殑宸ヨ壓缁戝畾锛屼竴涓伐鍗曞彲浠ョ粦瀹氬涓伐鑹鸿矾绾縛, SessionName: 'WoRouteBinding_update', + ifSave: false, + rotType: 'Wo' }; // 灏嗗璞¤浆鎹负JSON瀛楃涓插苟淇濆瓨鍒皊essionStorage sessionStorage.removeItem(`${id.SessionName}_params`); @@ -486,8 +478,8 @@ }, }, { - label: '璁″垝浜х嚎', - field: 'PLAN_LINE', + label: '瀹為檯浜х嚎', + field: 'ACT_LINE', component: 'ApiSelect', required: true, colProps: { -- Gitblit v1.9.3