|
@@ -92,7 +92,7 @@
|
|
|
and dept_id = #{deptId}
|
|
|
</if>
|
|
|
<if test="time != null">
|
|
|
- and date_format(time, '%Y-%m-%d') = date_format(#{time}, '%Y-%m-%d')
|
|
|
+ and date_format(sign_time, '%Y-%m-%d') = date_format(#{time}, '%Y-%m-%d')
|
|
|
</if>
|
|
|
</where>
|
|
|
</select>
|
|
@@ -102,8 +102,8 @@
|
|
|
SELECT *
|
|
|
FROM duty_sign_in_record
|
|
|
WHERE dept_id = #{deptId}
|
|
|
- AND date_format( time, '%Y-%m-%d' ) BETWEEN date_format(#{startTime}, '%Y-%m-%d' ) AND date_format(#{endTime}, '%Y-%m-%d' )
|
|
|
- GROUP BY date_format(time, '%Y-%m-%d')
|
|
|
+ AND date_format(sign_time, '%Y-%m-%d' ) BETWEEN date_format(#{startTime}, '%Y-%m-%d' ) AND date_format(#{endTime}, '%Y-%m-%d' )
|
|
|
+ GROUP BY date_format(sign_time, '%Y-%m-%d')
|
|
|
) t
|
|
|
</select>
|
|
|
<select id="queryStatusCount" resultType="java.lang.Long">
|
|
@@ -111,7 +111,7 @@
|
|
|
FROM duty_sign_in_record
|
|
|
WHERE dept_id = #{deptId}
|
|
|
AND `status` = #{status}
|
|
|
- AND date_format(time, '%Y-%m-%d') BETWEEN date_format(#{startTime}, '%Y-%m-%d') AND date_format(#{endTime}, '%Y-%m-%d')
|
|
|
+ AND date_format(sign_time, '%Y-%m-%d') BETWEEN date_format(#{startTime}, '%Y-%m-%d') AND date_format(#{endTime}, '%Y-%m-%d')
|
|
|
</select>
|
|
|
<select id="queryDaysSignInRecord" resultType="DutySignInRecord">
|
|
|
select date_format(time, '%Y-%m-%d') as time, type, status
|
|
@@ -127,7 +127,7 @@
|
|
|
and dept_id = #{deptId}
|
|
|
</if>
|
|
|
<if test="time != null">
|
|
|
- and date_format(time, '%Y-%m-%d') = date_format(#{time}, '%Y-%m-%d')
|
|
|
+ and date_format(sign_time, '%Y-%m-%d') = date_format(#{time}, '%Y-%m-%d')
|
|
|
</if>
|
|
|
</where>
|
|
|
</select>
|
|
@@ -139,16 +139,16 @@
|
|
|
and dept_id = #{deptId}
|
|
|
</if>
|
|
|
<if test="time != null">
|
|
|
- and date_format(time, '%Y-%m-%d') = date_format(#{time}, '%Y-%m-%d')
|
|
|
+ and date_format(sign_time, '%Y-%m-%d') = date_format(#{time}, '%Y-%m-%d')
|
|
|
</if>
|
|
|
</select>
|
|
|
<select id="queryAdminCheck" resultType="AdminCheck">
|
|
|
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(time,'%Y-%m-%d'),dept_id,count(*) as num from duty_sign_in_record
|
|
|
+ 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'
|
|
|
<if test="startTime != null and endTime != null">
|
|
|
- and (DATE_FORMAT(time,'%Y-%m-%d') between #{startTime} and #{endTime})
|
|
|
+ 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
|
|
@@ -157,10 +157,10 @@
|
|
|
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(time,'%Y-%m-%d'),dept_id,count(*) as num from duty_sign_in_record
|
|
|
+ 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'
|
|
|
<if test="startTime != null and endTime != null">
|
|
|
- and (DATE_FORMAT(time,'%Y-%m-%d') between #{startTime} and #{endTime})
|
|
|
+ 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
|
|
@@ -171,7 +171,7 @@
|
|
|
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})
|
|
|
+ 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
|
|
@@ -186,34 +186,34 @@
|
|
|
from (
|
|
|
select '5' as type,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,DATE_FORMAT(sign_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})
|
|
|
+ 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')
|
|
|
+ GROUP BY `status`,dept_id,unit_name,DATE_FORMAT(sign_time,'%Y-%m-%d')
|
|
|
HAVING num = 2
|
|
|
) t
|
|
|
UNION
|
|
|
select '4' as type,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,DATE_FORMAT(sign_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})
|
|
|
+ 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')
|
|
|
+ GROUP BY `status`,dept_id,unit_name,DATE_FORMAT(sign_time,'%Y-%m-%d')
|
|
|
HAVING num = 1
|
|
|
) t
|
|
|
UNION
|
|
|
select '1' as type,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,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(time,'%Y-%m-%d') between #{startTime} and #{endTime})
|
|
|
+ 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')
|
|
|
+ GROUP BY `status`,dept_id,unit_name,DATE_FORMAT(sign_time,'%Y-%m-%d')
|
|
|
HAVING num = 2
|
|
|
) t
|
|
|
UNION
|
|
@@ -221,14 +221,14 @@
|
|
|
from duty_sign_in_record
|
|
|
where `status` != '4' and `status` != '1'
|
|
|
<if test="startTime != null and endTime != null">
|
|
|
- and (DATE_FORMAT(time,'%Y-%m-%d') between #{startTime} and #{endTime})
|
|
|
+ and (DATE_FORMAT(sign_time,'%Y-%m-%d') between #{startTime} and #{endTime})
|
|
|
</if>
|
|
|
) t
|
|
|
</select>
|
|
|
<select id="search" resultType="DutySignInRecord">
|
|
|
select *
|
|
|
from duty_sign_in_record
|
|
|
- where id = (select max(id) from duty_sign_in_record where status != 0 and dept_id = #{deptId} and date_format(time, '%Y-%m-%d') = date_format(sysdate(), '%Y-%m-%d'))
|
|
|
+ where id = (select max(id) from duty_sign_in_record where status != 0 and dept_id = #{deptId} and date_format(sign_time, '%Y-%m-%d') = date_format(sysdate(), '%Y-%m-%d'))
|
|
|
</select>
|
|
|
|
|
|
</mapper>
|