|
@@ -40,6 +40,9 @@
|
|
|
<if test="vo.unitName != null and vo.unitName != ''">
|
|
|
and unit_name like concat('%', #{vo.unitName}, '%')
|
|
|
</if>
|
|
|
+ <if test="vo.unitAbbreviation != null and vo.unitAbbreviation != ''">
|
|
|
+ and unit_abbreviation like concat('%', #{vo.unitAbbreviation}, '%')
|
|
|
+ </if>
|
|
|
<if test="vo.dutyPerson != null and vo.dutyPerson != ''">
|
|
|
and duty_person like concat('%', #{vo.dutyPerson}, '%')
|
|
|
</if>
|
|
@@ -136,9 +139,9 @@
|
|
|
</if>
|
|
|
</select>
|
|
|
<select id="queryAdminCheck" resultType="AdminCheck">
|
|
|
- select t.unit_name as name,'缺勤' as status,COUNT(1) as number
|
|
|
+ select t.unit_name as name,t.unit_abbreviation as abbreviation,'缺勤' as status,COUNT(1) as number
|
|
|
from (
|
|
|
- select unit_name,DATE_FORMAT(time,'%Y-%m-%d'),dept_id,count(*) as num from duty_sign_in_record
|
|
|
+ select unit_name,unit_abbreviation,DATE_FORMAT(time,'%Y-%m-%d'),dept_id,count(*) as num from duty_sign_in_record
|
|
|
where `status` = '4'
|
|
|
<if test="startTime != null and endTime != null">
|
|
|
and (DATE_FORMAT(time,'%Y-%m-%d') between #{startTime} and #{endTime})
|
|
@@ -148,9 +151,9 @@
|
|
|
) t
|
|
|
GROUP BY t.dept_id
|
|
|
UNION
|
|
|
- select t.unit_name as name,'缺卡' as status,COUNT(1) as number
|
|
|
+ select t.unit_name as name,t.unit_abbreviation as abbreviation,'缺卡' as status,COUNT(1) as number
|
|
|
from (
|
|
|
- select unit_name,DATE_FORMAT(time,'%Y-%m-%d'),dept_id,count(*) as num from duty_sign_in_record
|
|
|
+ select unit_name,unit_abbreviation,DATE_FORMAT(time,'%Y-%m-%d'),dept_id,count(*) as num from duty_sign_in_record
|
|
|
where `status` = '4'
|
|
|
<if test="startTime != null and endTime != null">
|
|
|
and (DATE_FORMAT(time,'%Y-%m-%d') between #{startTime} and #{endTime})
|
|
@@ -160,7 +163,7 @@
|
|
|
) t
|
|
|
GROUP BY t.dept_id
|
|
|
UNION
|
|
|
- select unit_name as name,(select dict_label from duty_dict_data where dict_type = 'sign_status' and dict_value = `status`) as status,count(*) as number
|
|
|
+ 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">
|