From fc6f694cbc5c8d4f98bb98c51b87b4d73ac98885 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Wed, 03 Aug 2022 09:13:54 +0800
Subject: [PATCH] 首页种养品种总和保留三位小数,详情接口和种养品种接口分离

---
 src/main/java/org/springblade/modules/farm/mapper/FarmingRecordMapper.xml |   87 ++++++++++++++++++++++++++++++++++---------
 1 files changed, 69 insertions(+), 18 deletions(-)

diff --git a/src/main/java/org/springblade/modules/farm/mapper/FarmingRecordMapper.xml b/src/main/java/org/springblade/modules/farm/mapper/FarmingRecordMapper.xml
index af9e106..04a8ed7 100644
--- a/src/main/java/org/springblade/modules/farm/mapper/FarmingRecordMapper.xml
+++ b/src/main/java/org/springblade/modules/farm/mapper/FarmingRecordMapper.xml
@@ -45,6 +45,51 @@
         </if>
     </select>
 
+    <!--自定义查询农事记录分页数据-->
+    <select id="selectFarmingRecordPageByNz" resultType="org.springblade.modules.farm.vo.FarmingRecordVO">
+        SELECT
+        sfr.*,
+        sl.land_name landName,
+        user.real_name,
+        strain.strain_name,
+        sf.factory_name
+        FROM
+        sys_farming_record sfr
+        LEFT JOIN sys_land sl ON sl.id = sfr.land_id
+        LEFT JOIN blade_user user on sfr.operator = user.id
+        LEFT JOIN sys_strain strain on sfr.strain_id = strain.id
+        LEFT JOIN sys_stockfactory sf on sf.id = sfr.stock_id
+        WHERE
+        1 =1 AND sfr.stock_id IS NOT NULL
+        <if test="farmingRecord.landId!=null and farmingRecord.landId!=''">
+            and sfr.land_id = #{farmingRecord.landId}
+        </if>
+        <if test="farmingRecord.type!=null and farmingRecord.type!=''">
+            and sfr.type = #{farmingRecord.type}
+        </if>
+        <if test="farmingRecord.stockId!=null and farmingRecord.stockId!=''">
+            and sfr.stock_id = #{farmingRecord.stockId}
+        </if>
+        <if test="farmingRecord.jobWay!=null and farmingRecord.jobWay!=''">
+            and sfr.job_way = #{farmingRecord.jobWay}
+        </if>
+        <if test="farmingRecord.operator!=null and farmingRecord.operator!=''">
+            and sfr.operator = #{farmingRecord.operator}
+        </if>
+        <if test="farmingRecord.deptId!=null and farmingRecord.deptId!=''">
+            and sfr.dept_id = #{farmingRecord.deptId}
+        </if>
+        <if test="farmingRecord.tenantId!=null and farmingRecord.tenantId!=''">
+            and sfr.tenant_id = #{farmingRecord.tenantId}
+        </if>
+        <if test="farmingRecord.strainId!=null and farmingRecord.strainId!=''">
+            and sfr.strain_id = #{farmingRecord.strainId}
+        </if>
+        <if test="farmingRecord.farmId!=null and farmingRecord.farmId!=''">
+            and sl.farm_id = #{farmingRecord.farmId}
+        </if>
+    </select>
+
     <select id="selectFarmingRecordPages" resultType="org.springblade.modules.farm.vo.FarmingRecordVO">
         select sfr.*,sl.land_name landName from sys_farming_record sfr
         left join sys_land sl on sl.id = sfr.land_id
@@ -78,34 +123,40 @@
     <!--查询统计本年农事记录操作总数-->
     <select id="getFarmingCount" resultType="java.lang.Integer">
         select ifnull(count(*), 0) count
-        from sys_farming_record
+        from sys_farming_record ss
+        LEFT JOIN sys_land sl ON sl.id = ss.land_id
         where 1=1
           and YEAR (time)= YEAR (NOW())
-          and dept_id=#{deptId}
+        <if test="farmId != null and farmId != ''">
+            and sl.farm_id = #{sale.farmId}
+        </if>
     </select>
 
     <!--查询统计本年农事记录操作总数-->
     <select id="getFarmingStatis" resultType="org.springblade.modules.farm.vo.FarmingStatisVO">
-        select type,case when type = 0 then '施肥'
-                   when type = 1 then '翻耕'
-                   when type = 2 then '灌溉'
-                   when type = 3 then '起垄'
-                   when type = 4 then '用药'
-                   when type = 5 then '追肥'
-                   when type = 6 then '除草'
-                   when type = 7 then '修剪'
-                   when type = 8 then '浸种'
-                   when type = 9 then '拌种'
-                   when type = 10 then '移栽'
-                   when type = 11 then '直播'
-                   when type = 12 then '采收'
+        select ss.type,case when ss.type = 0 then '施肥'
+                   when ss.type = 1 then '翻耕'
+                   when ss.type = 2 then '灌溉'
+                   when ss.type = 3 then '起垄'
+                   when ss.type = 4 then '用药'
+                   when ss.type = 5 then '追肥'
+                   when ss.type = 6 then '除草'
+                   when ss.type = 7 then '修剪'
+                   when ss.type = 8 then '浸种'
+                   when ss.type = 9 then '拌种'
+                   when ss.type = 10 then '移栽'
+                   when ss.type = 11 then '直播'
+                   when ss.type = 12 then '采收'
                    else '其他' end as name,
                ifnull(count(*), 0) value
-        from sys_farming_record
+        from sys_farming_record ss
+	    LEFT JOIN sys_land sl ON sl.id = ss.land_id
         where 1=1
           and YEAR (time)= YEAR (NOW())
-          and dept_id=#{deptId}
-        group by type
+        <if test="farmId != null and farmId != ''">
+            and sl.farm_id = #{sale.farmId}
+        </if>
+        group by ss.type
     </select>
 
     <!--今年农资使用量-->

--
Gitblit v1.9.3