From ef5b4a78ec2201b46cb0c9a59fc2cb036bd13f38 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期五, 18 七月 2025 15:05:21 +0800
Subject: [PATCH] 次破报表添加报工审核状态条件

---
 north-glass-erp/src/main/resources/mapper/mm/MaterialInventory.xml |  120 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 117 insertions(+), 3 deletions(-)

diff --git a/north-glass-erp/src/main/resources/mapper/mm/MaterialInventory.xml b/north-glass-erp/src/main/resources/mapper/mm/MaterialInventory.xml
index fc889c2..099785e 100644
--- a/north-glass-erp/src/main/resources/mapper/mm/MaterialInventory.xml
+++ b/north-glass-erp/src/main/resources/mapper/mm/MaterialInventory.xml
@@ -247,6 +247,12 @@
             <if test="materialOutbound.reviewed != null and materialOutbound.reviewed != ''">
                 and mo.reviewed regexp #{materialOutbound.reviewed}
             </if>
+            <if test="materialOutbound.project != null and materialOutbound.project != ''">
+                and mo.project regexp #{materialOutbound.project}
+            </if>
+            <if test="materialOutbound.batch != null and materialOutbound.batch != ''">
+                and mo.batch regexp #{materialOutbound.batch}
+            </if>
         </where>
         order by mo.create_time desc
         limit #{offset},#{pageSize};
@@ -280,6 +286,12 @@
             </if>
             <if test="materialOutbound.reviewed != null and materialOutbound.reviewed != ''">
                 and mo.reviewed regexp #{materialOutbound.reviewed}
+            </if>
+            <if test="materialOutbound.project != null and materialOutbound.project != ''">
+                and mo.project regexp #{materialOutbound.project}
+            </if>
+            <if test="materialOutbound.batch != null and materialOutbound.batch != ''">
+                and mo.batch regexp #{materialOutbound.batch}
             </if>
         </where>
     </select>
@@ -612,11 +624,11 @@
 
     <insert id="insertMaterialOutbound"  useGeneratedKeys="true" >
         insert into mm.material_outbound(material_outbound_id,material_requisition_personnel,material_requisition_team,order_id,outbound_type,
-                                         warehouse_manager,material_requisition_date,reviewed_state,create_time)
+                                         warehouse_manager,material_requisition_date,reviewed_state,create_time,project,batch)
         values (
                   #{number} ,#{materialOutbound.materialRequisitionPersonnel},#{materialOutbound.materialRequisitionTeam},
                 #{materialOutbound.orderId},#{materialOutbound.outboundType},#{materialOutbound.warehouseManager},#{materialOutbound.materialRequisitionDate},
-                   0,now()
+                   0,now(),#{materialOutbound.project},#{materialOutbound.batch}
                )
     </insert>
 
@@ -627,7 +639,9 @@
             order_id=#{materialOutbound.orderId},
             outbound_type=#{materialOutbound.outboundType},
             warehouse_manager=#{materialOutbound.warehouseManager},
-            material_requisition_date=#{materialOutbound.materialRequisitionDate}
+            material_requisition_date=#{materialOutbound.materialRequisitionDate},
+            project=#{materialOutbound.project},
+            batch=#{materialOutbound.batch}
         where material_outbound_id = #{number}
     </insert>
 
@@ -1149,5 +1163,105 @@
         select project_no from pp.optimize_use where id=#{useId};
     </select>
 
+    <select id="getOptimizeOutboundReport">
+        SELECT
+            ml.operation_order_number,
+            ml.project_no,
+            ml.inventory_id,
+            ml.material_name,
+            ml.unit,
+            ml.width,
+            ml.height,
+            ml.thickness,
+            ml.quantity,
+            round(ml.width*ml.height*ml.quantity/1000000,2) as area,
+            ou.use_count,
+            ou.not_use_count,
+            ml.operator,
+            ml.operate_time
 
+        FROM
+            mm.material_log AS ml
+                LEFT JOIN pp.optimize_use AS ou ON ou.project_no = ml.project_no
+                AND ou.raw_stock_code = ml.inventory_id
+        WHERE
+            ou.project_no IS NOT NULL
+            	AND date( ml.operate_time )>= #{startDate} and date(ml.operate_time) &lt;= #{endDate}
+            and ml.operate_type=#{type}
+
+        <if test="materialLog.operationOrderNumber != null and materialLog.operationOrderNumber != ''">
+            and ml.operation_order_number regexp #{materialLog.operationOrderNumber}
+        </if>
+        <if test="materialLog.useCount != null and materialLog.useCount != ''">
+            and ou.use_count regexp #{materialLog.useCount}
+        </if>
+        <if test="materialLog.quantity != null and materialLog.quantity != ''">
+            and ml.quantity regexp #{materialLog.quantity}
+        </if>
+        <if test="materialLog.width != null and materialLog.width != ''">
+            and  ml.width regexp  REGEXP_REPLACE(#{materialLog.width},'\\.0+$','')
+        </if>
+        <if test="materialLog.height != null and materialLog.height != ''">
+            and  ml.height regexp  REGEXP_REPLACE(#{materialLog.height},'\\.0+$','')
+        </if>
+        <if test="materialLog.thickness != null and materialLog.thickness != ''">
+            and  ml.thickness regexp  REGEXP_REPLACE(#{materialLog.thickness},'\\.0+$','')
+        </if>
+
+        <if test="materialLog.inventoryId != null and materialLog.inventoryId != ''">
+            and  ml.inventory_id regexp  #{materialLog.inventoryId}
+        </if>
+
+        <if test="materialLog.materialName != null and materialLog.materialName != ''">
+            and  ml.material_name regexp  #{materialLog.materialName}
+        </if>
+        <if test="materialLog.producer != null and materialLog.producer != ''">
+            and  ml.producer regexp  #{materialLog.producer}
+        </if>
+        <if test="materialLog.unit != null and materialLog.unit != ''">
+            and  ml.unit regexp  #{materialLog.unit}
+        </if>
+        <if test="materialLog.operator != null and materialLog.operator != ''">
+            and  ml.operator regexp  #{materialLog.operator}
+        </if>
+        <if test="materialLog.remarks != null and materialLog.remarks != ''">
+            and ml.remarks regexp #{materialLog.remarksr}
+        </if>
+        order by ml.id desc
+        limit #{offset},#{pageSize};
+    </select>
+
+    <select id="getOptimizeOutboundReportTotal">
+        SELECT
+            CEILING(count(ml.id)/#{pageSize}) as 'pageTotal',
+                count(ml.id) as 'total'
+
+        FROM
+            mm.material_log AS ml
+                LEFT JOIN pp.optimize_use AS ou ON ou.project_no = ml.project_no
+                AND ou.raw_stock_code = ml.inventory_id
+        WHERE
+            ou.project_no IS NOT NULL
+          AND date( ml.operate_time )>= #{startDate} and date(ml.operate_time) &lt;= #{endDate}
+          and ml.operate_type=#{type}
+    </select>
+
+
+    <select id="getSelectMaterialInventoryMes">
+        select
+            mi.id,
+            mi.material_code AS materialCode,
+            mi.producer,
+            sum(mi.available_quantity) AS availableQuantity,
+            JSON_UNQUOTE(JSON_EXTRACT(ms.json, '$.width')) AS width,
+            JSON_UNQUOTE(JSON_EXTRACT(ms.json, '$.height')) AS height,
+            JSON_UNQUOTE(JSON_EXTRACT(ms.json, '$.thickness')) AS thickness,
+            JSON_UNQUOTE(JSON_EXTRACT(ms.json, '$.name')) AS name,
+            JSON_UNQUOTE(JSON_EXTRACT(ms.json, '$.model')) AS model,
+            JSON_UNQUOTE(JSON_EXTRACT(ms.json, '$.unit')) AS unit
+        from mm.material_inventory mi left join mm.material_store ms on mi.material_code=ms.id
+        where mi.available_quantity>0
+        group by mi.material_code
+        order by mi.id desc
+    </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.8.0