From 52b964ac679d5ecb547dba70f2e65d8208c7ffcd Mon Sep 17 00:00:00 2001
From: ZQN <364596817@qq.com>
Date: 星期二, 25 六月 2024 16:56:16 +0800
Subject: [PATCH] 用户类型修改

---
 project-report/src/main/resources/mapper/report/ReportMapper.xml |   27 +++++++++++++++------------
 1 files changed, 15 insertions(+), 12 deletions(-)

diff --git a/project-report/src/main/resources/mapper/report/ReportMapper.xml b/project-report/src/main/resources/mapper/report/ReportMapper.xml
index 2032c8d..c68d466 100644
--- a/project-report/src/main/resources/mapper/report/ReportMapper.xml
+++ b/project-report/src/main/resources/mapper/report/ReportMapper.xml
@@ -14,7 +14,7 @@
         from enforce_order
         where 1=1
         <if test="deptId != null ">
-            AND apply_dept_id = #{deptId}
+            AND check_dept_id = #{deptId}
         </if>
         <if test="beginTime!=null and beginTime!=''">
             AND apply_time &gt;= #{beginTime}
@@ -47,16 +47,19 @@
     <select id="getCompanyCount"
             parameterType="com.project.report.domain.bo.query.ReportQueryBo"
             resultType="com.project.common.vo.KeyVal">
+
         select
-        company_id AS k,
-        IFNULL(count(order_id),0) as v
-        from enforce_order
+            sc.company_name AS k,
+            IFNULL(count(eo.order_id),0) as v
+        from sys_company sc
+        left join enforce_order eo on sc.company_id=eo.company_id
         where 1=1
+        and sc.check_status=2
         <if test="beginTime!=null and beginTime!=''">
-            AND apply_time &gt;= #{beginTime}
+            AND eo.apply_time &gt;= #{beginTime}
         </if>
         <if test="endTime!=null and endTime!=''">
-            AND apply_time &lt;= #{endTime}
+            AND eo.apply_time &lt;= #{endTime}
         </if>
         GROUP BY k order by v desc
     </select>
@@ -89,15 +92,15 @@
         from enforce_complaint_log
         where 1=1
         <if test="beginTime!=null and beginTime!=''">
-            AND apply_time &gt;= #{beginTime}
+            AND complaint_time &gt;= #{beginTime}
         </if>
         <if test="endTime!=null and endTime!=''">
-            AND apply_time &lt;= #{endTime}
+            AND complaint_time &lt;= #{endTime}
         </if>
         GROUP BY k
     </select>
 
-    <!--    鎵ф硶绫诲瀷鍒嗗竷-->
+    <!--    鎶曡瘔绫诲瀷鍒嗗竷-->
     <select id="getComplaintTypeCount"
             parameterType="com.project.report.domain.bo.query.ReportQueryBo"
             resultType="com.project.common.vo.KeyVal">
@@ -107,12 +110,12 @@
         from enforce_complaint_log
         where 1=1
         <if test="beginTime!=null and beginTime!=''">
-            AND apply_time &gt;= #{beginTime}
+            AND complaint_time &gt;= #{beginTime}
         </if>
         <if test="endTime!=null and endTime!=''">
-            AND apply_time &lt;= #{endTime}
+            AND complaint_time &lt;= #{endTime}
         </if>
-        <if test="doComplaint!=null ">
+        <if test="doComplaint != null ">
             <if test="doComplaint == 0 ">
                 AND complaint_status = 0
             </if>

--
Gitblit v1.9.1