From 1c13bd7a2cd2c8ba69a185da69344c8b59f4e561 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期四, 04 七月 2024 09:29:15 +0800
Subject: [PATCH] 选中求和功能以及还原双击回车才能点击单元格

---
 north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue |   62 +++++++++++++++++++++++++------
 1 files changed, 50 insertions(+), 12 deletions(-)

diff --git a/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue b/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue
index f59779c..1f502b8 100644
--- a/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue
+++ b/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue
@@ -98,8 +98,12 @@
     value: '1',
     label: t('processCard.finishedProductLabel'),
   },
-  {
+/*  {
     value: '2',
+    label: t('processCard.halfProductLabel'),
+  },*/
+  {
+    value: `${company.printLabel.labelValue}`,
     label: `${company.printLabel.labelType}`,
   },
 ]
@@ -221,7 +225,7 @@
     {field: 'quantity', title:  t('order.quantity'),},
     {field: 'total_area', title:  t('order.area'),},
     {field: 'product_name', title: t('order.product'),},
-    {field: 'glass_child', title: t('reportingWorks.glassChild'),},
+    {field: 'glass_child', title: t('reportingWorks.glassChild'),filters: [{data: ''}], slots: {filter: 'num1_filter'},filterMethod: filterChanged},
     {field: 'founder', title: t('processCard.founder'),},
     {field: 'splitFrame_time', title: t('processCard.splitFrameTime'),},
   ],//琛ㄥご鎸夐挳
@@ -230,7 +234,7 @@
     buttons: [
       {code: 'print', name: t('processCard.print'), status: 'primary'},
       {code: 'customLabel', name: t('processCard.customLabelPrinting'), status: 'primary'},
-
+      {code: 'printLabel', name: t('processCard.labelPrinting'), status: 'primary'},
     ],
     // import: false,
     // export: true,
@@ -263,6 +267,7 @@
     let type=printType.value
     let faceOrientation=stateValue.value
     let lableTypes=lableType.value
+    let lableTitle=lableType.text
     if ($grid) {
       switch (code) {
         case 'print': {
@@ -279,7 +284,9 @@
               id += selectRecords[i].id + "|"
             }
           }
-          router.push({path: '/main/processCard/printProcess', query: {printList: JSON.stringify(selectRecords),printMerge:printMerge.value}})
+
+          let printMergeVal=printMerge.value
+         router.push({path: '/main/processCard/printProcess', query: {printList: JSON.stringify(selectRecords),printMerge:printMergeVal}})
 
           break
         }
@@ -308,10 +315,16 @@
           let flowCardData = ref({
             flowCard: data,
           })
+          for (let i = 0; i < flowCardData.value.flowCard.length; i++) {
+            const regex = /^[1-9]\d*$/
+            if (!regex.test(flowCardData.value.flowCard[i].sort)) {
+              ElMessage.warning(t('basicData.msg.greater0'))
+              return; // 濡傛灉鏈変竴涓笉鏄暣鏁�
+            }
+          }
           request.post("/processCard/printSort", flowCardData.value).then((res) => {
             if (res.code == 200) {
               ElMessage.success(t('processCard.sortingSuccessful'))
-              //router.push('/main/processCard/SplittingDetails?orderId=${orderId}')
               router.push({
                 path: '/main/processCard/PrintFlowCard',
                 query: {orderId: orderId,random: Math.random()}
@@ -368,7 +381,7 @@
   align: 'center',//鏂囧瓧灞呬腑
   stripe: true,//鏂戦┈绾�
   rowConfig: {isCurrent: true, isHover: true, height: 30},//榧犳爣绉诲姩鎴栭�夋嫨楂樹寒
-  id: 'demo_1',
+  id: 'demo_2',
   showFooter: true,//鏄剧ず鑴�
   printConfig: {},
   importConfig: {},
@@ -385,6 +398,15 @@
   },
   customConfig: {
     storage: true
+  },
+  mouseConfig:{selected: true},//榧犳爣閫変腑
+  keyboardConfig:{
+    isArrow: true,
+    isDel: true,
+    isEnter: true,
+    isTab: true,
+    isEdit: true,
+    isChecked: true
   },
   editConfig: {
     trigger: 'click',
@@ -440,14 +462,16 @@
       title: t('order.width'),
       filters: [{data: ''}],
       slots: {filter: 'num1_filter'},
-      filterMethod: filterChanged
+      filterMethod: filterChanged,
+      sortable: true,
     },
     {
       field: 'child_height',
       title: t('order.height'),
       filters: [{data: ''}],
       slots: {filter: 'num1_filter'},
-      filterMethod: filterChanged
+      filterMethod: filterChanged,
+      sortable: true,
     },
     {
       field: 'area',
@@ -456,8 +480,22 @@
       slots: {filter: 'num1_filter'},
       filterMethod: filterChanged
     },
-  ],//琛ㄥご鎸夐挳
+  ],
+  //琛ㄥ崟楠岃瘉
+  editRules: {
+    sort: [
+      //type: 'number', min: 0, message: '璇疯緭鍏ュぇ浜庣瓑浜�0鐨勬暟鍊�' ,
+      {
+        validator ({ cellValue }) {
+          const regex = /^[1-9]\d*$/
+          if (!regex.test(cellValue)) {
+            return new Error(t('basicData.msg.greater0'))
 
+          }
+        }}
+    ],
+  },
+  //琛ㄥご鎸夐挳
   toolbarConfig: {
     buttons: [
       {code: 'sort', name: t('processCard.sorting'), status: 'primary'},
@@ -496,7 +534,7 @@
 
 <template>
   <div class="main-div-customer">
-    <el-input clearable placeholder="鍚堝苟鎵撳嵃" v-model="printMerge" style="width: 90px"></el-input>
+    <el-input clearable :placeholder="$t('processCard.mergePrinting')" v-model="printMerge" style="width: 90px"></el-input>
     &nbsp;
     <label>{{$t('processCard.labelStyle')}}锛�</label>
     <el-select v-model="printType" clearable default-value="default_city" :placeholder="$t('processCard.pleaseSelect')" style="width: 120px">
@@ -517,7 +555,7 @@
       />
     </el-select>
     &nbsp;
-    <el-select v-model="stateValue" class="m-2" placeholder='' clearable allow-create filterable style="width: 140px">
+    <el-select v-model="stateValue" class="m-2" :placeholder="$t('processCard.pleaseSelect')" clearable allow-create filterable style="width: 140px">
       <el-option
           v-for="item in stateOptions"
           :key="item.value"
@@ -610,7 +648,7 @@
           ref="xGridDetail"
           class="mytable-scrollbar"
           max-height="100%"
-          height="600px"
+          height="550px"
           size="small"
           v-bind="detailGridOptions"
           v-on="gridEvents">

--
Gitblit v1.8.0