From d709e8a7117704ac4717db5201e40964b90d4791 Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期四, 28 五月 2026 16:17:03 +0800
Subject: [PATCH] Merge dev_pro_河南鹤壁 into dev_山西_晋和园_pro

---
 src/main/resources/mapper/sales/SalesLedgerProductMapper.xml |  156 +++++++++++++++++++++------------------------------
 1 files changed, 65 insertions(+), 91 deletions(-)

diff --git a/src/main/resources/mapper/sales/SalesLedgerProductMapper.xml b/src/main/resources/mapper/sales/SalesLedgerProductMapper.xml
index 7e352d8..6b48bbe 100644
--- a/src/main/resources/mapper/sales/SalesLedgerProductMapper.xml
+++ b/src/main/resources/mapper/sales/SalesLedgerProductMapper.xml
@@ -9,7 +9,6 @@
         T1.id,
         T1.sales_ledger_id,
         T1.warn_num,
-        T1.speculative_trading_name,
         T1.quantity,
         T1.min_stock,
         T1.tax_rate,
@@ -18,23 +17,11 @@
         T1.tax_exclusive_total_price,
         T1.invoice_type,
         T1.type,
-        T1.tickets_num,
-        T1.tickets_amount,
-        T1.future_tickets,
-        T1.future_tickets_amount,
-        T1.invoice_num,
-        T1.no_invoice_num,
-        T1.invoice_amount,
-        T1.no_invoice_amount,
         T1.product_id,
         T1.product_model_id,
         T1.register,
         T1.register_date,
         T1.approve_status,
-        T1.pending_invoice_total,
-        T1.invoice_total,
-        T1.pending_tickets_total,
-        T1.tickets_total,
         T1.is_checked,
         T1.is_production,
         T1.create_user,
@@ -51,7 +38,13 @@
          WHEN IFNULL(t3.shipped_quantity, 0) = 0 THEN '寰呭彂璐�'
          WHEN (IFNULL(T1.quantity, 0) - IFNULL(t3.shipped_quantity, 0)) > 0 THEN '閮ㄥ垎鍙戣揣'
         ELSE '宸插彂璐�'
-        END as shippingStatus
+        END as shippingStatus,
+        CASE
+         WHEN T1.type != 2 THEN NULL
+         WHEN IFNULL(t4.approved_stock_in_num, 0) &lt;= 0 THEN '寰呭叆搴�'
+         WHEN IFNULL(t4.approved_stock_in_num, 0) &gt;= IFNULL(T1.quantity, 0) THEN '瀹屽叏鍏ュ簱'
+        ELSE '鍏ュ簱涓�'
+        END AS stock_in_approval_status
         FROM
         sales_ledger_product T1
         LEFT JOIN (
@@ -66,6 +59,39 @@
         where si.status != '瀹℃牳鎷掔粷'
         GROUP BY sales_ledger_product_id
         ) t3 ON t3.sales_ledger_product_id = T1.id
+        LEFT JOIN (
+        SELECT rel.sales_ledger_product_id,
+               IFNULL(SUM(rel.stock_in_num), 0) AS approved_stock_in_num
+        FROM (
+            SELECT slp.id AS sales_ledger_product_id,
+                   sir.stock_in_num
+            FROM stock_in_record sir
+            INNER JOIN sales_ledger_product slp
+                ON slp.type = 2
+                AND TRIM(sir.record_type) = '7'
+                AND sir.record_id = slp.sales_ledger_id
+                AND (
+                    (sir.batch_no IS NOT NULL AND sir.batch_no LIKE CONCAT('%-', slp.id))
+                    OR (sir.batch_no IS NULL AND sir.product_model_id = slp.product_model_id)
+                )
+            WHERE sir.approval_status = 1
+
+            UNION ALL
+
+            SELECT slp.id AS sales_ledger_product_id,
+                   sir.stock_in_num
+            FROM stock_in_record sir
+            INNER JOIN quality_inspect qi
+                ON TRIM(sir.record_type) = '10'
+                AND sir.record_id = qi.id
+            INNER JOIN sales_ledger_product slp
+                ON slp.type = 2
+                AND slp.sales_ledger_id = qi.purchase_ledger_id
+                AND slp.product_model_id = qi.product_model_id
+            WHERE sir.approval_status = 1
+        ) rel
+        GROUP BY rel.sales_ledger_product_id
+        ) t4 ON t4.sales_ledger_product_id = T1.id
         left join product_model pm ON T1.product_model_id = pm.id
         left join product p ON pm.product_id = p.id
         <where>
@@ -94,74 +120,6 @@
           and slp.id is not null
         order by slp.id desc
         limit 1
-
-
-    </select>
-    <select id="listPage" resultType="com.ruoyi.sales.dto.SalesLedgerProductDto">
-        select slp.*,
-        sl.project_name,
-        sl.customer_name,
-        sl.sales_contract_no,
-        sl.customer_contract_no
-        from sales_ledger_product slp
-        left join sales_ledger sl on slp.sales_ledger_id = sl.id
-        <where>
-            slp.type = 1
-            <if test="req.salesContractNo != null and req.salesContractNo != '' ">
-                AND sl.sales_contract_no like concat('%',#{req.salesContractNo},'%')
-            </if>
-            <if test="req.customerContractNo != null and req.customerContractNo != '' ">
-                AND sl.customer_contract_no like concat('%',#{req.customerContractNo},'%')
-            </if>
-            <if test="req.projectName != null and req.projectName != '' ">
-                AND sl.project_name like concat('%',#{req.projectName},'%')
-            </if>
-            <if test="req.customerName != null and req.customerName != '' ">
-                AND sl.customer_name like concat('%',#{req.customerName},'%')
-            </if>
-            <if test="req.productCategory != null and req.productCategory != '' ">
-                AND slp.product_category like concat('%',#{req.productCategory},'%')
-            </if>
-            <if test="req.status != null and req.status ">
-                AND slp.pending_invoice_total &gt; 0
-            </if>
-        </where>
-        order by slp.register_date desc
-    </select>
-    <select id="listPagePurchaseLedger" resultType="com.ruoyi.sales.dto.SalesLedgerProductDto">
-        select slp.*,
-        sl.project_name,
-        sl.supplier_name,
-        sl.supplier_id,
-        sl.sales_contract_no,
-        sl.purchase_contract_number
-        from sales_ledger_product slp
-        left join purchase_ledger sl on slp.sales_ledger_id = sl.id
-        <where>
-            slp.type = 2
-            <if test="req.purchaseContractNumber != null and req.purchaseContractNumber != '' ">
-                AND sl.purchase_contract_number like concat('%',#{req.purchaseContractNumber},'%')
-            </if>
-            <if test="req.approvalStatus != null and req.approvalStatus != ''">
-                and sl.approval_status = #{req.approvalStatus}
-            </if>
-            <if test="req.customerContractNo != null and req.customerContractNo != '' ">
-                AND sl.customer_contract_no like concat('%',#{req.customerContractNo},'%')
-            </if>
-            <if test="req.projectName != null and req.projectName != '' ">
-                AND sl.project_name like concat('%',#{req.projectName},'%')
-            </if>
-            <if test="req.customerName != null and req.customerName != '' ">
-                AND sl.customer_name like concat('%',#{req.customerName},'%')
-            </if>
-            <if test="req.productCategory != null and req.productCategory != '' ">
-                AND slp.product_category like concat('%',#{req.productCategory},'%')
-            </if>
-            <if test="req.status != null and req.status ">
-                AND slp.pending_tickets_total &gt; 0
-            </if>
-        </where>
-        order by slp.register_date desc
     </select>
     <select id="procurementBusinessSummaryListPage"
             resultType="com.ruoyi.purchase.dto.ProcurementBusinessSummaryDto">
@@ -249,7 +207,7 @@
             JOIN product pr ON slp.product_id = pr.id
         WHERE
             slp.type = 2
-            AND pr.parent_id = ( SELECT id FROM product WHERE product_name = '鍘熸潗鏂�' )
+            AND pr.parent_id = ( SELECT id FROM product WHERE product_name = '鍘熸枡' )
         GROUP BY
             pr.id,
             pr.product_name
@@ -260,20 +218,36 @@
 
     <select id="selectProductCountByTypeAndDate" resultType="int">
         SELECT IFNULL(COUNT(*), 0)
-        FROM sales_ledger_product
+        FROM sales_ledger_product slp
+        LEFT JOIN sales_ledger sl ON sl.id = slp.sales_ledger_id
+        LEFT JOIN purchase_ledger pl ON pl.id = slp.sales_ledger_id
         WHERE type = #{type}
-        <if test="startDate != null">
-            AND register_date &gt;= #{startDate}
-        </if>
-        <if test="endDate != null">
-            AND register_date &lt;= #{endDate}
-        </if>
+
+        <choose>
+            <when test="type == 1">
+                <if test="startDate != null">
+                    AND sl.entry_date &gt;= #{startDate}
+                </if>
+                <if test="endDate != null">
+                    AND sl.entry_date &lt;= #{endDate}
+                </if>
+            </when>
+
+            <when test="type == 2">
+                <if test="startDate != null">
+                    AND pl.entry_date &gt;= #{startDate}
+                </if>
+                <if test="endDate != null">
+                    AND pl.entry_date &lt;= #{endDate}
+                </if>
+            </when>
+        </choose>
     </select>
 
     <select id="selectRawMaterialExpense" resultType="java.math.BigDecimal">
         WITH RECURSIVE product_tree AS (SELECT id
                                         FROM product
-                                        WHERE product_name = '鍘熸潗鏂�'
+                                        WHERE product_name = '鍘熸枡'
 
                                         UNION ALL
 

--
Gitblit v1.9.3