From a067fdbf6b1374a1402096c722257575916eab99 Mon Sep 17 00:00:00 2001
From: wjli <591616088@qq.com>
Date: 星期四, 11 五月 2023 16:21:14 +0800
Subject: [PATCH] 1.首页分段显示 2.配送订单页可根据分段显示 3.后端配送率统计

---
 xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/mapper/CarMapper.java |   35 ++++++++++++++++++++++-------------
 1 files changed, 22 insertions(+), 13 deletions(-)

diff --git a/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/mapper/CarMapper.java b/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/mapper/CarMapper.java
index 5fdb0bf..1db91a0 100644
--- a/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/mapper/CarMapper.java
+++ b/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/mapper/CarMapper.java
@@ -43,19 +43,28 @@
     List<Car> getCarInfo2(@Param(Constants.WRAPPER) QueryWrapper<Car> wrapper);
 
     @Select("select \n" +
-            "sum(case when create_time <= '${year}-01' then 1 else 0 end) as january,\n" +
-            "sum(case when create_time <= '${year}-02' then 1 else 0 end) as february,\n" +
-            "sum(case when create_time <= '${year}-03' then 1 else 0 end) as march,\n" +
-            "sum(case when create_time <= '${year}-04' then 1 else 0 end) as april,\n" +
-            "sum(case when create_time <= '${year}-05' then 1 else 0 end) as may,\n" +
-            "sum(case when create_time <= '${year}-06' then 1 else 0 end) as june,\n" +
-            "sum(case when create_time <= '${year}-07' then 1 else 0 end) as july,\n" +
-            "sum(case when create_time <= '${year}-08' then 1 else 0 end) as august,\n" +
-            "sum(case when create_time <= '${year}-09' then 1 else 0 end) as september,\n" +
-            "sum(case when create_time <= '${year}-10' then 1 else 0 end) as october,\n" +
-            "sum(case when create_time <= '${year}-11' then 1 else 0 end) as november,\n" +
-            "sum(case when create_time <= '${year}-12' then 1 else 0 end) as december\n" +
+            "sum(case when create_time < '${year}-02' then 1 else 0 end) as january,\n" +
+            "sum(case when create_time < '${year}-03' then 1 else 0 end) as february,\n" +
+            "sum(case when create_time < '${year}-04' then 1 else 0 end) as march,\n" +
+            "sum(case when create_time < '${year}-05' then 1 else 0 end) as april,\n" +
+            "sum(case when create_time < '${year}-06' then 1 else 0 end) as may,\n" +
+            "sum(case when create_time < '${year}-07' then 1 else 0 end) as june,\n" +
+            "sum(case when create_time < '${year}-08' then 1 else 0 end) as july,\n" +
+            "sum(case when create_time < '${year}-09' then 1 else 0 end) as august,\n" +
+            "sum(case when create_time < '${year}-10' then 1 else 0 end) as september,\n" +
+            "sum(case when create_time < '${year}-11' then 1 else 0 end) as october,\n" +
+            "sum(case when create_time < '${year}-12' then 1 else 0 end) as november,\n" +
+            "sum(case when create_time < '${year}-13' then 1 else 0 end) as december\n" +
             "from t_car")
     Month getCarCount(@Param("year")Integer year);
 
-}
\ No newline at end of file
+    @Select("SELECT\n" +
+            "\t( MAX( amount ) - MIN( amount ) ) AS amount,\n" +
+            "\tSUM( money ) AS money,\n" +
+            "\t( MAX( mileage ) - MIN( mileage ) ) AS mileage, \n" +
+            "\tSUM(amount) AS allAmount,SUM(money) AS allMoney,(MAX(mileage)) AS allMileage \n"+
+            "FROM\n" +
+            "\t t_add_oil a\n" +
+            "\t WHERE a.car_id = #{carId}")
+    Car getCarInfoByCarId(@Param("carId")String carId);
+}

--
Gitblit v1.9.1