Commit ad64c285297c2b4612c1599e6aebfd8f0ab760e1

Authored by wangqian
1 parent 4dd66bb7

工单趋势图时间及工单统计状态修改

urbanops-module-garden/src/main/resources/mapper/homepage/HomepageSummaryMapper.xml
@@ -44,7 +44,7 @@ @@ -44,7 +44,7 @@
44 workorder_main_info t 44 workorder_main_info t
45 <where> 45 <where>
46 t.deleted = 0 46 t.deleted = 0
47 - AND t.buz_status != '200' 47 + AND t.buz_status NOT IN ('200', '140')
48 <if test="companyId != null"> 48 <if test="companyId != null">
49 AND t.worker_company_id = #{companyId} 49 AND t.worker_company_id = #{companyId}
50 </if> 50 </if>
@@ -63,7 +63,7 @@ @@ -63,7 +63,7 @@
63 workorder_main_info t 63 workorder_main_info t
64 <where> 64 <where>
65 t.deleted = 0 65 t.deleted = 0
66 - AND t.buz_status = '200' 66 + AND t.buz_status IN ('200', '140')
67 <if test="companyId != null"> 67 <if test="companyId != null">
68 AND t.worker_company_id = #{companyId} 68 AND t.worker_company_id = #{companyId}
69 </if> 69 </if>