From 60311724f9afc274f15cd07320947aca8adf27e4 Mon Sep 17 00:00:00 2001
From: Lius <Lius2225@163.com>
Date: 星期五, 01 八月 2025 16:53:08 +0800
Subject: [PATCH] 班次利用率算法调整

---
 lxzn-module-tms/src/main/java/org/jeecg/modules/tms/mapper/xml/BaseToolsMapper.xml |   71 +++++++++++++++++++----------------
 1 files changed, 39 insertions(+), 32 deletions(-)

diff --git a/lxzn-module-tms/src/main/java/org/jeecg/modules/tms/mapper/xml/BaseToolsMapper.xml b/lxzn-module-tms/src/main/java/org/jeecg/modules/tms/mapper/xml/BaseToolsMapper.xml
index 4e099e2..c51a68b 100644
--- a/lxzn-module-tms/src/main/java/org/jeecg/modules/tms/mapper/xml/BaseToolsMapper.xml
+++ b/lxzn-module-tms/src/main/java/org/jeecg/modules/tms/mapper/xml/BaseToolsMapper.xml
@@ -13,6 +13,7 @@
             t.standard_code standardCode,
             t.tool_model toolModel,
             t.parama_table_name paramaTableName,
+            t.tool_picture toolPicture,
             t1.application_type applicationType,
             t1.supplier_id supplierId,
             t1.province_city provinceCity,
@@ -71,6 +72,7 @@
     <select id="paraCommonToolList" resultType="org.jeecg.modules.tms.entity.vo.ParaCommonToolVo">
         select
             t.id,
+            t.id toolCodeId,
             t.classify_id classifyId,
             t.tool_code toolCode,
             t.sign_code signCode,
@@ -80,6 +82,7 @@
             t.standard_code standardCode,
             t.tool_model toolModel,
             t.parama_table_name paramaTableName,
+            t.tool_picture toolPicture,
             t1.application_type applicationType,
             t1.supplier_id supplierId,
             t1.province_city provinceCity,
@@ -112,6 +115,7 @@
             t.standard_code standardCode,
             t.tool_model toolModel,
             t.parama_table_name paramaTableName,
+            t.tool_picture toolPicture,
             t1.application_type applicationType,
             t1.supplier_id supplierId,
             t1.province_city provinceCity,
@@ -170,6 +174,7 @@
             t.standard_code standardCode,
             t.tool_model toolModel,
             t.parama_table_name paramaTableName,
+            t.tool_picture toolPicture,
             t1.application_type applicationType,
             t1.supplier_id supplierId,
             t1.province_city provinceCity,
@@ -237,6 +242,7 @@
             t.standard_code standardCode,
             t.tool_model toolModel,
             t.parama_table_name paramaTableName,
+            t.tool_picture toolPicture,
             t1.application_type applicationType,
             t1.supplier_id supplierId,
             t1.province_city provinceCity,
@@ -308,6 +314,7 @@
             t.standard_code standardCode,
             t.tool_model toolModel,
             t.parama_table_name paramaTableName,
+            t.tool_picture toolPicture,
             t1.application_type applicationType,
             t1.supplier_id supplierId,
             t1.province_city provinceCity,
@@ -359,23 +366,22 @@
     <select id="pageWithLedgerAndConfig" resultType="org.jeecg.modules.tms.entity.vo.StocktakingPoundVo">
         SELECT
         t.id,
-        t.classify_id AS classifyId,
+        t.create_time AS createTime,
         t.tool_code AS toolCode,
-        t.foreign_language_name AS foreignLanguageName,
-        t.standard_level AS standardLevel,
-        t.standard_code AS standardCode,
-        t.tool_model AS toolModel,
-        t.parama_table_name AS paramaTableName,
+        t2.tool_model AS toolModel,
+        t2.parama_table_name AS paramaTableName,
         t.tool_id AS toolId,
-        t1.total_count AS totalCount,
-        t1.available_count AS availableCount,
-        t4.position_code AS positionCode,
+        t3.position_code AS positionCode,
         t3.application_type AS applicationType,
         t3.chinese_name AS chineseName,
         t3.supplier_id AS supplierId,
         t3.storage_location AS storageLocation,
         t3.main_unit AS mainUnit,
-
+        t1.available_count AS availableCount,
+        t1.total_count AS totalCount,
+        t3.warehouse_id AS warehouseId,
+        t4.classify_id AS classifyId,
+        t3.province_city AS provinceCity,
         <!-- 鍔ㄦ�佸瓧娈甸�夋嫨锛屼娇鐢ㄨ〃鍒悕锛堥渶纭繚琛ㄥ凡鍏宠仈锛� -->
         <choose>
             <when test="ew.paramNameValuePairs.paramaTableName == '1'">
@@ -408,11 +414,12 @@
                 c.part_material AS partMaterial
             </otherwise>
         </choose>
+        FROM tms_tool_ledger_detail t
+        left join tms_tool_ledger t1 ON  t1.tool_id= t.tool_Code
+        left join tms_tools_classify t4 on t4.id = t1.classify_id
+        left join tms_base_tools t2 on t2.id = t.tool_code
+        left join tms_tools_config_property t3 on t3.tool_code = t.tool_code
 
-        FROM tms_base_tools t
-        LEFT JOIN tms_tool_ledger t1 ON t1.tool_id = t.id
-        LEFT JOIN tms_tools_config_property t3 ON t3.tool_code = t.id
-        LEFT JOIN tms_tool_ledger_detail t4 ON t4.tool_code = t.id
 
         <!-- 鍔ㄦ�佽〃鍏宠仈锛岀‘淇濇墍鏈夋儏鍐甸兘鏈夊搴旂殑 LEFT JOIN -->
         <choose>
@@ -441,8 +448,8 @@
         </choose>
 
         <where>
-            <if test="ew.paramNameValuePairs.toolCode != null and ew.paramNameValuePairs.toolCode != ''">
-                AND t.tool_code LIKE CONCAT('%', #{ew.paramNameValuePairs.toolCode}, '%')
+            <if test="ew.paramNameValuePairs.toolId != null and ew.paramNameValuePairs.toolId != ''">
+                AND t.tool_id LIKE CONCAT('%', #{ew.paramNameValuePairs.toolId}, '%')
             </if>
         </where>
 
@@ -453,33 +460,33 @@
     <select id="pageWithSharpedAndConfig" resultType="org.jeecg.modules.tms.entity.vo.SharpeeningVo">
         SELECT
         t.id,
-        t.classify_id AS classifyId,
+        t.create_time AS createTime,
         t.tool_code AS toolCode,
-        t.foreign_language_name AS foreignLanguageName,
-        t.standard_level AS standardLevel,
-        t.standard_code AS standardCode,
-        t.tool_model AS toolModel,
-        t.parama_table_name AS paramaTableName,
+        t2.tool_model AS toolModel,
+        t2.parama_table_name AS paramaTableName,
         t.tool_id AS toolId,
-        t1.total_count AS totalCount,
-        t1.available_count AS availableCount,
-        t4.position_code AS positionCode,
+        t3.position_code AS positionCode,
         t3.application_type AS applicationType,
         t3.chinese_name AS chineseName,
         t3.supplier_id AS supplierId,
         t3.storage_location AS storageLocation,
         t3.main_unit AS mainUnit,
-        t4.warehouse_id AS warehouseId,
+        t3.warehouse_id AS warehouseId,
+        t4.classify_id AS classifyId,
         t3.province_city AS provinceCity
+        FROM tms_tool_ledger_detail t
+        left join tms_tool_ledger t1 ON  t1.tool_id= t.tool_Code
+        left join tms_tools_classify t4 on t4.id = t1.classify_id
+        left join tms_base_tools t2 on t2.id = t.tool_code
+        left join tms_tools_config_property t3 on t3.tool_code = t.tool_code
+--         FROM tms_base_tools t
+--         LEFT JOIN tms_tool_ledger t1 ON t1.tool_id = t.id
+--         LEFT JOIN tms_tools_config_property t3 ON t3.tool_code = t.id
 
-        FROM tms_base_tools t
-        LEFT JOIN tms_tool_ledger t1 ON t1.tool_id = t.id
-        LEFT JOIN tms_tools_config_property t3 ON t3.tool_code = t.id
-        LEFT JOIN tms_tool_ledger_detail t4 ON t4.tool_code = t.id
 
         <where>
-            <if test="ew.paramNameValuePairs.toolCode != null and ew.paramNameValuePairs.toolCode != ''">
-                AND t.tool_code LIKE CONCAT('%', #{ew.paramNameValuePairs.toolCode}, '%')
+            <if test="ew.paramNameValuePairs.toolId != null and ew.paramNameValuePairs.toolId != ''">
+                AND t.tool_id LIKE CONCAT('%', #{ew.paramNameValuePairs.toolId}, '%')
             </if>
         </where>
 

--
Gitblit v1.9.3