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/resources/mapper/SignCountMapper.xml |   76 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 76 insertions(+), 0 deletions(-)

diff --git a/xboot-modules/xboot-your/src/main/resources/mapper/SignCountMapper.xml b/xboot-modules/xboot-your/src/main/resources/mapper/SignCountMapper.xml
index ea85e3e..e5cb986 100644
--- a/xboot-modules/xboot-your/src/main/resources/mapper/SignCountMapper.xml
+++ b/xboot-modules/xboot-your/src/main/resources/mapper/SignCountMapper.xml
@@ -132,4 +132,80 @@
         line ASC,
         send_date asc
     </select>
+    <select id="signCountNew" resultType="cn.exrick.xboot.your.entity.OrderStatusCount">
+        SELECT
+        line,
+        user_name as userName,
+        car_name,SUM(sign_count) as signCount,
+        SUM(amount) as amount,
+        CONCAT_WS( '',( FORMAT((SUM( sign_count ) / SUM( amount )),4 ) *100), '%') as proportion,
+        (CASE `batch` WHEN '01娈�' THEN batch ELSE 0 END) as 'oneBatch',
+        (CASE `batch` WHEN '02娈�' THEN batch ELSE 0 END) as 'twoBatch',
+        (CASE `batch` WHEN '03娈�' THEN batch ELSE 0 END) as 'threeBatch',
+        (CASE `batch` WHEN '04娈�' THEN batch ELSE 0 END) as 'fourBatch',
+        (CASE `batch` WHEN '05娈�' THEN batch ELSE 0 END) as 'fiveBatch'
+        FROM
+        t_sign
+        <where>
+            1=1
+            <if test="bo.line != null and bo.line != ''" >
+                AND  line = #{bo.line}
+            </if>
+            <if test="bo.carName != null and bo.carName != ''" >
+                AND car_name like  CONCAT ('%',#{bo.carName},'%')
+            </if>
+            <if test="bo.batch != null and bo.batch != ''" >
+                AND  batch = #{bo.batch}
+            </if>
+            <if test="bo.userName != null and bo.userName != ''" >
+                AND  user_name = #{bo.userName}
+            </if>
+            <if test="bo.sendDate != null and bo.sendDate != ''">
+                AND  DATE_FORMAT(send_date,'%Y-%m-%d') = #{bo.sendDate}
+            </if>
+            <if test="bo.sendDateStart != null and bo.sendDateStart != ''">
+                AND send_date >= #{bo.sendDateStart}
+            </if>
+            <if test="bo.sendDateEnd != null and bo.sendDateEnd != ''">
+                AND send_date &lt;= #{bo.sendDateEnd}
+            </if>
+        </where>
+        GROUP BY line,
+        user_name,
+        car_name,
+        batch
+    </select>
+    <select id="signCountNewTotal" resultType="cn.exrick.xboot.your.entity.OrderStatusCount">
+    SELECT
+    car_name,
+    CONCAT_WS( '',( FORMAT((SUM( sign_count ) / SUM( amount )),4 ) *100), '%') as proportion
+    FROM
+    t_sign
+    <where>
+        1=1
+        <if test="bo.line != null and bo.line != ''" >
+            AND  line = #{bo.line}
+        </if>
+        <if test="bo.carName != null and bo.carName != ''" >
+            AND car_name like  CONCAT ('%',#{bo.carName},'%')
+        </if>
+        <if test="bo.batch != null and bo.batch != ''" >
+            AND  batch = #{bo.batch}
+        </if>
+        <if test="bo.userName != null and bo.userName != ''" >
+            AND  user_name = #{bo.userName}
+        </if>
+        <if test="bo.sendDate != null and bo.sendDate != ''">
+            AND  DATE_FORMAT(send_date,'%Y-%m-%d') = #{bo.sendDate}
+        </if>
+        <if test="bo.sendDateStart != null and bo.sendDateStart != ''">
+            AND send_date >= #{bo.sendDateStart}
+        </if>
+        <if test="bo.sendDateEnd != null and bo.sendDateEnd != ''">
+            AND send_date &lt;= #{bo.sendDateEnd}
+        </if>
+    </where>
+    GROUP BY
+    car_name
+    </select>
 </mapper>

--
Gitblit v1.9.1