|
@@ -151,38 +151,33 @@
|
|
|
</if>
|
|
|
</select>
|
|
|
<select id="queryAdminCheck" resultType="AdminCheck">
|
|
|
- select t.unit_name as name,t.unit_abbreviation as abbreviation,'缺勤' as status,COUNT(1) as number
|
|
|
+ select a.*,ifnull(sum(case when a.status = '1' then a.number end),0) as zcNumber,ifnull(sum(case when a.status = '2' then a.number end),0) as ycNumber
|
|
|
from (
|
|
|
- select unit_name,unit_abbreviation,DATE_FORMAT(sign_time,'%Y-%m-%d'),dept_id,count(*) as num from duty_sign_in_record
|
|
|
- where `status` = '4'
|
|
|
+ select t.dept_id,t.unit_name as name,t.unit_abbreviation as abbreviation,'2' as status,COUNT(1) as number
|
|
|
+ from (
|
|
|
+ select unit_name,unit_abbreviation,DATE_FORMAT(sign_time,'%Y-%m-%d'),dept_id,count(*) as num from duty_sign_in_record
|
|
|
+ where `status` != '1'
|
|
|
<if test="startTime != null and endTime != null">
|
|
|
and (DATE_FORMAT(sign_time,'%Y-%m-%d') between #{startTime} and #{endTime})
|
|
|
</if>
|
|
|
- GROUP BY `status`,dept_id,unit_name,DATE_FORMAT(time,'%Y-%m-%d')
|
|
|
- HAVING num = 2
|
|
|
- ) t
|
|
|
- GROUP BY t.dept_id
|
|
|
- UNION
|
|
|
- select t.unit_name as name,t.unit_abbreviation as abbreviation,'缺卡' as status,COUNT(1) as number
|
|
|
- from (
|
|
|
- select unit_name,unit_abbreviation,DATE_FORMAT(sign_time,'%Y-%m-%d'),dept_id,count(*) as num from duty_sign_in_record
|
|
|
- where `status` = '4'
|
|
|
+ GROUP BY dept_id,DATE_FORMAT(sign_time,'%Y-%m-%d')
|
|
|
+ ) t
|
|
|
+ GROUP BY t.dept_id
|
|
|
+ UNION
|
|
|
+ select t.dept_id,t.unit_name as name,t.unit_abbreviation as abbreviation,'1' as status,COUNT(1) as number
|
|
|
+ from (
|
|
|
+ select unit_name,unit_abbreviation,DATE_FORMAT(sign_time,'%Y-%m-%d'),dept_id,count(*) as num from duty_sign_in_record
|
|
|
+ where `status` = '1'
|
|
|
<if test="startTime != null and endTime != null">
|
|
|
and (DATE_FORMAT(sign_time,'%Y-%m-%d') between #{startTime} and #{endTime})
|
|
|
</if>
|
|
|
- GROUP BY `status`,dept_id,unit_name,DATE_FORMAT(time,'%Y-%m-%d')
|
|
|
- HAVING num = 1
|
|
|
- ) t
|
|
|
- GROUP BY t.dept_id
|
|
|
- UNION
|
|
|
- select unit_name as name,unit_abbreviation as abbreviation,(select dict_label from duty_dict_data where dict_type = 'sign_status' and dict_value = `status`) as status,count(*) as number
|
|
|
- from duty_sign_in_record
|
|
|
- where `status` != '4'
|
|
|
- <if test="startTime != null and endTime != null">
|
|
|
- and (DATE_FORMAT(sign_time,'%Y-%m-%d') between #{startTime} and #{endTime})
|
|
|
- </if>
|
|
|
- GROUP BY `status`,dept_id
|
|
|
- ORDER BY case status when '缺勤' then 1 when '迟到' then 2 when '早退' then 3 when '缺卡' then 4 else 5 end ASC,CONVERT(name USING GBK) ASC,number DESC
|
|
|
+ GROUP BY dept_id,DATE_FORMAT(sign_time,'%Y-%m-%d')
|
|
|
+ HAVING num = 2
|
|
|
+ ) t
|
|
|
+ GROUP BY t.dept_id
|
|
|
+ ) a
|
|
|
+ GROUP BY a.dept_id
|
|
|
+ ORDER BY a.status desc,CONVERT(a.name USING GBK) ASC
|
|
|
</select>
|
|
|
<select id="queryAdminStatisticsDay" resultType="AdminStatisticsDay">
|
|
|
select
|