Commit ad64c285297c2b4612c1599e6aebfd8f0ab760e1
1 parent
4dd66bb7
工单趋势图时间及工单统计状态修改
Showing
1 changed file
with
2 additions
and
2 deletions
urbanops-module-garden/src/main/resources/mapper/homepage/HomepageSummaryMapper.xml
| ... | ... | @@ -44,7 +44,7 @@ |
| 44 | 44 | workorder_main_info t |
| 45 | 45 | <where> |
| 46 | 46 | t.deleted = 0 |
| 47 | - AND t.buz_status != '200' | |
| 47 | + AND t.buz_status NOT IN ('200', '140') | |
| 48 | 48 | <if test="companyId != null"> |
| 49 | 49 | AND t.worker_company_id = #{companyId} |
| 50 | 50 | </if> |
| ... | ... | @@ -63,7 +63,7 @@ |
| 63 | 63 | workorder_main_info t |
| 64 | 64 | <where> |
| 65 | 65 | t.deleted = 0 |
| 66 | - AND t.buz_status = '200' | |
| 66 | + AND t.buz_status IN ('200', '140') | |
| 67 | 67 | <if test="companyId != null"> |
| 68 | 68 | AND t.worker_company_id = #{companyId} |
| 69 | 69 | </if> | ... | ... |