考勤明细

Signed-off-by: lSun <15893999301@qq.com>
This commit is contained in:
lSun 2024-12-20 19:14:26 +08:00
parent 9ed3545405
commit 4a88b43f4b
3 changed files with 12 additions and 4 deletions

View File

@ -243,7 +243,7 @@ public class AttendanceDetailsController extends BaseController {
attendanceDetailsService.exportAttMonthReportData(response, o);
}
@RequiresPermissions("att:public:list")
// @RequiresPermissions("att:public:list")
@GetMapping("/getOutCountList")
@Log(title = "考勤报表->公用->外出次数查询", businessType = BusinessType.QUERY)
public TableDataInfo getOutCountList(AttDataDetailsBean bean) {
@ -256,8 +256,8 @@ public class AttendanceDetailsController extends BaseController {
return getDataTableError(new ArrayList<>());
}
@RequiresPermissions("att:public:list")
@GetMapping("/getOutCountList")
// @RequiresPermissions("att:public:list")
@GetMapping("/getAttCountList")
@Log(title = "考勤报表->考情明细->打卡次数记录", businessType = BusinessType.QUERY)
public TableDataInfo getAttCountList(AttDataDetailsBean bean) {
try{

View File

@ -50,6 +50,14 @@ public class AttDataDetailsBean {
* 考勤日期
*/
private String attCurrentDay;
/**
* 打卡时间
*/
private String attCurrentTime;
/**
* 打卡地址
*/
private String attAddress;
/**
* 上班打卡时间原始

View File

@ -295,7 +295,7 @@
att_source_data
<where>
<if test="attCurrentDay != null and attCurrentDay != ''">
and awa.att_current_day = #{attCurrentDay}
and att_current_day = #{attCurrentDay}
</if>
<if test="userName != null and userName != ''">
and locate(#{userName},awa.user_name)