From 3bfff48245e0eb8affcbf2a16fb2c75eb1cff8bb Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期一, 14 四月 2025 11:10:40 +0800
Subject: [PATCH] 模拟计算发送数据处理

---
 north-glass-erp/northglass-erp/src/views/pp/processCard/AddProcessCard.vue |   37 ++++++++++++++++++++++++++-----------
 1 files changed, 26 insertions(+), 11 deletions(-)

diff --git a/north-glass-erp/northglass-erp/src/views/pp/processCard/AddProcessCard.vue b/north-glass-erp/northglass-erp/src/views/pp/processCard/AddProcessCard.vue
index 48f5c28..98a9ca4 100644
--- a/north-glass-erp/northglass-erp/src/views/pp/processCard/AddProcessCard.vue
+++ b/north-glass-erp/northglass-erp/src/views/pp/processCard/AddProcessCard.vue
@@ -73,6 +73,7 @@
 
 const orderId = route.query.orderId
 const productionId = route.query.productionId
+const orderQuantity = route.query.quantity
 
 const orderOtherMoney = ref(null)
 
@@ -313,6 +314,7 @@
       path: '/main/processCard/AddProcessCard',
       query: {orderId: orderId,
         productionId: productionId,
+        quantity: orderQuantity,
         random:Math.random()
       }
     })
@@ -795,6 +797,7 @@
             if (item.baiscQuantity === 0) {
               $grid.remove(item)
             }
+            $gridLeft.reloadData([...$gridLeft.getTableData().fullData])
             //delete item._X_ROW_KEY
           } else {
             item.quantity = checkedNum.value
@@ -846,9 +849,8 @@
       checkedList.forEach((item) => {
         item.processId = checkedListLeft[0].processId
         item.landingSequence = checkedListLeft[0].landingSequence
-        item.quantity = checkedListLeft[0].baiscQuantity
+        item.quantity = item.baiscQuantity
         item.computeGrossArea = (item.computeGrossArea - checkedListLeft[0].width * checkedListLeft[0].height * checkedListLeft[0].baiscQuantity / 1000000).toFixed(2)
-
         delete item._X_ROW_KEY
       })
       $gridLeft.insertAt(checkedList)
@@ -894,6 +896,15 @@
               gridLeftOptions.toolbarConfig.buttons[0].disabled=false
               return;
             }
+
+            // 璁$畻 $table 閲� quantity 瀛楁鐨勬�诲拰
+            let totalQuantity = selectRecords.reduce((sum, record) => sum + (Number(record.quantity) || 0), 0);
+            // 瀵规瘮鍏ㄥ眬鍙橀噺 orderQuantity
+            if (totalQuantity !== orderQuantity*1) {
+              ElMessage.warning(`鎵�閫夋暟鎹殑鏁伴噺鎬诲拰 (${totalQuantity}) 涓庤鍗曟暟閲� (${orderQuantity}) 涓嶅尮閰嶏紝璇锋鏌ュ悗閲嶈瘯锛乣);
+              gridLeftOptions.toolbarConfig.buttons[0].disabled = false;
+              return;
+            }
             // if (leftData.length!=selectRecords.length){
             //   ElMessage.warning('璇峰嬀閫夋墍鏈夋暟鎹繘琛屼繚瀛�')
             //   gridLeftOptions.toolbarConfig.buttons[0].disabled=false
@@ -937,19 +948,22 @@
 
 let quantit = ref('')
 let weight = ref('')
-const handleCheckboxChange = ({row}) => {
-  const $grid = xGrid.value
-  //鑾峰彇鍙宠竟琛ㄦ牸checkbox閫変腑鐨勬暟鎹�
-  const checkedList = $grid.getCheckboxRecords()
+const handleCheckboxChange = ({ row }) => {
+  const $grid = xGrid.value;
+  // 鑾峰彇鍙宠竟琛ㄦ牸 checkbox 閫変腑鐨勬暟鎹�
+  const checkedList = $grid.getCheckboxRecords();
   let quantitySum = 0;
   let weightsum = 0;
+
   checkedList.forEach(item => {
-    quantitySum += item.baiscQuantity;
+    quantitySum += Number(item.baiscQuantity) || 0; // 纭繚杞崲涓烘暟瀛�
     weightsum += weightSum(item);
   });
-  quantit.value = quantitySum;
+
+  quantit.value = Number(quantitySum) || 0; // 纭繚鏈�缁堝�兼槸鏁板瓧
   weight.value = parseFloat(weightsum.toFixed(2));
-}
+};
+
 </script>
 
 <template>
@@ -1007,8 +1021,8 @@
         <div height="100%" style="margin: 5px" width="11%">
           <el-main style="">
             <div>
-              <span><el-input v-model="quantit" style="width: 80px;"/></span>
-              <span><el-input v-model="weight" style="width: 80px;"/></span>
+              <span><el-input :readonly="true" v-model="quantit" style="width: 80px;"/></span>
+              <span><el-input :readonly="true" v-model="weight" style="width: 80px;"/></span>
             </div>
             <span>{{ $t('processCard.selectedQuantity') }}:<el-input id="checkedNum" v-model="checkedNum" clearable
                                                                      type="number"></el-input></span><br>
@@ -1040,6 +1054,7 @@
                 v-bind="gridOptions"
                 v-on="gridEventsRight"
                 @checkbox-change="handleCheckboxChange"
+                @checkbox-all="handleCheckboxChange"
             >
               <!--      @toolbar-button-click="toolbarButtonClickEvent"-->
               <!--      涓嬫媺鏄剧ず鎵�鏈変俊鎭彃妲�-->

--
Gitblit v1.8.0