parent
9ed3545405
commit
4a88b43f4b
|
|
@ -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{
|
||||
|
|
|
|||
|
|
@ -50,6 +50,14 @@ public class AttDataDetailsBean {
|
|||
* 考勤日期
|
||||
*/
|
||||
private String attCurrentDay;
|
||||
/**
|
||||
* 打卡时间
|
||||
*/
|
||||
private String attCurrentTime;
|
||||
/**
|
||||
* 打卡地址
|
||||
*/
|
||||
private String attAddress;
|
||||
|
||||
/**
|
||||
* 上班打卡时间原始
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue