From 1b419ccf217dbcace15987f1c0fe26b9e15d1d4b Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期三, 16 十月 2024 10:26:56 +0800
Subject: [PATCH] 工艺绑定优化

---
 src/views/tigerprojects/system/lowcode/entityts/BIZ_MES_WO.ts |  157 ++++++++++++++++++++++++---------------------------
 1 files changed, 74 insertions(+), 83 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 432efb1..18445b3 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 02:58:01
+ * @LastEditTime: 2024-10-13 23:21:24
  */
 
 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(璺宠浆鍒版柊鐨勯〉闈�)
       };
@@ -78,6 +66,10 @@
           x.onClick = handleRelease.bind(null, args, params);
           x.tooltip = '涓嬪彂';
         }
+        // if (x.name == 'handleTemplate') {
+        //   x.onClick = handleTemplate.bind(null, args, params);
+        //   x.tooltip = '妯℃澘缁存姢';
+        // }
       });
       return data;
     },
@@ -100,6 +92,14 @@
           showActionButtonGroup: false,
         }),
         prodinfo: useForm({
+          labelWidth: 120,
+          schemas: prodCfgformSchema,
+          actionColOptions: {
+            span: 24,
+          },
+          showActionButtonGroup: false,
+        }),
+        tmpinfo: useForm({
           labelWidth: 120,
           schemas: prodCfgformSchema,
           actionColOptions: {
@@ -259,18 +259,6 @@
           openRvModal(true, { rotId: selectVals.value['ROUTE_CODE'], slotName: slotName });
           break;
         case 'setRot':
-          const id = {
-            ID: params['record'].ID,
-            Name: 'WoRouteBinding',
-            CODE: params['record'].ITEM_CODE,
-            Title: `宸ュ崟[${params['record'].ITEM_CODE}]宸ヨ壓缁戝畾`,
-            colSlots: [] /* 琛ㄦ牸鍐呯殑鏌ヨ琛ㄥ崟瀛楁鐨勬彃妲藉垪琛紝涓�鑸敤浜庡脊鍑洪�夋嫨妗嗘寜閽� */,
-            crudColSlots: [] /* 澧炲垹鏀硅〃鍗曞瓧娈电殑鎻掓Ы鍒楄〃锛屼竴鑸敤浜庡脊鍑洪�夋嫨妗嗘寜閽� */,
-            dense: true,
-            pageTitle: `宸ュ崟宸ヨ壓缁戝畾`,
-            pageContent: `杩欓噷鏄鐞嗗伐鍗曠殑宸ヨ壓缁戝畾锛屼竴涓伐鍗曞彲浠ョ粦瀹氬涓伐鑹鸿矾绾縛,
-          };
-          go(`/WoRouteBinding/CP/${encodeURI(JSON.stringify(id))}`);
           break;
       }
     },
@@ -324,8 +312,7 @@
         try {
           const form = param.values['forminfo'];
           const wo = param.values['mValues'];
-          wo.ROUTE_CODE = form.ROUTE_CODE;
-          wo.STATUS = 2;
+          wo.STATUS = wo.STATUS == 3?wo.STATUS: 2;
           let input: SaveWoBatchInput = {
             Wo: wo,
             WoBatch: {
@@ -344,7 +331,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(),
@@ -361,6 +348,7 @@
               ACT_END_TIME: wo.ACT_END_TIME,
               BATCH_NO: '',
             },
+            IfToCust: form.IfToCust
           };
           SaveMesBatchWo(input).then((action) => {
             resolve(action);
@@ -393,6 +381,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`);
@@ -407,34 +396,26 @@
    * @return {*}
    */
   function handleConfig(args, params: Recordable) {
-    const openCustModal = args[7];
-    // rotSchema.value = getFormSchema('rotinfo');
-    params['routeData'].value = {
-      nodes: [],
-      edges: [],
+    const go = args[5];
+    const id = {
+      ID: params['record'].ID,
+      Name: 'WoRouteBinding',
+      CODE: params['record'].ORDER_NO,
+      Title: `宸ュ崟[${params['record'].ORDER_NO}]宸ヨ壓缁戝畾`,
+      colSlots: params['colSlots'].value, /* 琛ㄦ牸鍐呯殑鏌ヨ琛ㄥ崟瀛楁鐨勬彃妲藉垪琛紝涓�鑸敤浜庡脊鍑洪�夋嫨妗嗘寜閽� */
+      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'
     };
-    initRoute(params['currlf'], params['record'].ROUTE_CODE, params['routeData'], params['currlf']);
-    getEntity({
-      sqlcmd: `ROT_CODE = '${params['record'].ROUTE_CODE}'`,
-      entityName: 'MES_ROUTE',
-      order: '',
-    }).then((rot) => {
-      params['selectVals'].value['ROUTE_CODE'] = params['record'].ROUTE_CODE;
-      params['selectVals'].value['ROT_ID'] =
-        !isNullOrEmpty(rot.Data) && !isNullOrEmpty(rot.Data.Items) ? rot.Data.Items[0].ID : '';
-      openCustModal(true, {
-        isUpdate: true,
-        ctype: 'BIZ_MES_WO_Config',
-        title: '宸ヨ壓閰嶇疆',
-        width: '1200px',
-        formEl: params['useFormData'].value, //濡傛灉鏄涓〃鍗曪紝澧炲姞澶氫釜鎻掓Ы
-        formElName: ['woinfo', 'prodinfo', 'rotinfo'], //琛ㄥ崟鎻掓Ы鍚嶇О锛屾敮鎸佸涓〃鍗�
-        RowKey: '',
-        fnName: 'SaveCofig', //淇濆瓨鏂规硶鍚�
-        others: params['routeData'].value,
-        values: { ...params['record'], ...params['selectVals'].value }, //琛ㄥ崟璁板綍
-      });
-    });
+    // 灏嗗璞¤浆鎹负JSON瀛楃涓插苟淇濆瓨鍒皊essionStorage
+    sessionStorage.removeItem(`${id.SessionName}_params`);
+    sessionStorage.setItem(`${id.SessionName}_params`, encodeURI(JSON.stringify(id)));
+    go(`/WoRouteBinding/CP/${encodeURI(JSON.stringify({ sName: id.SessionName, Name: id.Name }))}`);
   }
 
   /**
@@ -481,8 +462,8 @@
       },
     },
     {
-      label: '璁″垝浜х嚎',
-      field: 'PLAN_LINE',
+      label: '瀹為檯浜х嚎',
+      field: 'ACT_LINE',
       component: 'ApiSelect',
       required: true,
       colProps: {
@@ -497,34 +478,44 @@
       },
     },
     {
-      label: '宸ヨ壓璺嚎',
-      field: 'ROUTE_CODE',
-      component: 'Input',
-      required: true,
+      field: 'IfToCust',
+      component: 'Switch',
+      label: '鏄惁淇濆瓨宸ヨ壓璺嚎鍒板鎴�',
+      defaultValue: true,
       colProps: {
-        span: 22,
+        span: 8,
       },
+      labelWidth: 200,
     },
-    {
-      field: 'add',
-      component: 'Input',
-      label: '1',
-      colSlot: 'add',
-      defaultValue: 'MES_ROUTE',
-      colProps: {
-        span: 1,
-      },
-    },
-    {
-      field: 'set',
-      component: 'Input',
-      label: '1',
-      colSlot: 'set',
-      defaultValue: 'MES_ROUTE',
-      colProps: {
-        span: 1,
-      },
-    },
+    // {
+    //   label: '宸ヨ壓璺嚎',
+    //   field: 'ROUTE_CODE',
+    //   component: 'Input',
+    //   required: true,
+    //   colProps: {
+    //     span: 22,
+    //   },
+    // },
+    // {
+    //   field: 'add',
+    //   component: 'Input',
+    //   label: '1',
+    //   colSlot: 'add',
+    //   defaultValue: 'MES_ROUTE',
+    //   colProps: {
+    //     span: 1,
+    //   },
+    // },
+    // {
+    //   field: 'set',
+    //   component: 'Input',
+    //   label: '1',
+    //   colSlot: 'set',
+    //   defaultValue: 'MES_ROUTE',
+    //   colProps: {
+    //     span: 1,
+    //   },
+    // },
   ];
 
   const woCfgformSchema: FormSchema[] = [

--
Gitblit v1.9.3