From bb4ad624f2be54d8dfbc00e508a189924851ef56 Mon Sep 17 00:00:00 2001
From: "pref_mail@163.com" <pref_mail@163.com>
Date: Wed, 19 Mar 2025 14:24:58 +0800
Subject: [PATCH] =?UTF-8?q?fix:=E5=B9=B2=E7=BA=BF=E8=BD=A6=E6=AC=A1?=
 =?UTF-8?q?=E7=BB=9F=E8=AE=A1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../java/com/logpm/report/mapper/WarehouseIndexMapper.xml     | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/WarehouseIndexMapper.xml b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/WarehouseIndexMapper.xml
index 49f8a3788..c99d6ca97 100644
--- a/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/WarehouseIndexMapper.xml
+++ b/blade-service/logpm-report/src/main/java/com/logpm/report/mapper/WarehouseIndexMapper.xml
@@ -1023,6 +1023,7 @@
         logpm_trunkline_cars_load ltcl LEFT JOIN
         logpm_trunkline_cars_load_line ltcll on ltcll.load_id=ltcl.id
         WHERE
+        YEAR(ltcl.create_time) = YEAR(CURDATE()) and
         ltcl.load_status!=100 and ltcll.node_id =#{warehouseId}
     </select>
     <select id="findCarsStattisonTheWayNum" resultType="java.lang.Integer">
@@ -1032,6 +1033,7 @@
         logpm_trunkline_cars_load ltcl LEFT JOIN
         logpm_trunkline_cars_load_line ltcll on ltcll.load_id=ltcl.id
         WHERE
+        YEAR(ltcl.create_time) = YEAR(CURDATE()) and
         ltcl.load_status!=100 and ltcll.node_status='0' and ltcll.node_id =#{warehouseId}
     </select>
     <select id="findCarsStattisWorkingNum" resultType="java.lang.Integer">
@@ -1041,6 +1043,7 @@
         logpm_trunkline_cars_load ltcl LEFT JOIN
         logpm_trunkline_cars_load_line ltcll on ltcll.load_id=ltcl.id
         WHERE
+        YEAR(ltcl.create_time) = YEAR(CURDATE()) and
         ltcl.load_status!='100' and ltcl.load_status!='100' and ltcll.node_status='10' and ltcll.unload_status='0' and ltcll.node_id =#{warehouseId}
 
     </select>
@@ -1051,6 +1054,7 @@
         logpm_trunkline_cars_load ltcl LEFT JOIN
         logpm_trunkline_cars_load_line ltcll on ltcll.load_id=ltcl.id
         WHERE
+        YEAR(ltcl.create_time) = YEAR(CURDATE()) and
         ltcl.load_status!='100' and ltcl.load_status!='100' and ltcll.node_status='10' and ltcll.unload_status!='0' and ltcll.node_id =#{warehouseId}
 
     </select>