parent
9ed3545405
commit
4a88b43f4b
|
|
@ -243,7 +243,7 @@ public class AttendanceDetailsController extends BaseController {
|
||||||
attendanceDetailsService.exportAttMonthReportData(response, o);
|
attendanceDetailsService.exportAttMonthReportData(response, o);
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequiresPermissions("att:public:list")
|
// @RequiresPermissions("att:public:list")
|
||||||
@GetMapping("/getOutCountList")
|
@GetMapping("/getOutCountList")
|
||||||
@Log(title = "考勤报表->公用->外出次数查询", businessType = BusinessType.QUERY)
|
@Log(title = "考勤报表->公用->外出次数查询", businessType = BusinessType.QUERY)
|
||||||
public TableDataInfo getOutCountList(AttDataDetailsBean bean) {
|
public TableDataInfo getOutCountList(AttDataDetailsBean bean) {
|
||||||
|
|
@ -256,8 +256,8 @@ public class AttendanceDetailsController extends BaseController {
|
||||||
return getDataTableError(new ArrayList<>());
|
return getDataTableError(new ArrayList<>());
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequiresPermissions("att:public:list")
|
// @RequiresPermissions("att:public:list")
|
||||||
@GetMapping("/getOutCountList")
|
@GetMapping("/getAttCountList")
|
||||||
@Log(title = "考勤报表->考情明细->打卡次数记录", businessType = BusinessType.QUERY)
|
@Log(title = "考勤报表->考情明细->打卡次数记录", businessType = BusinessType.QUERY)
|
||||||
public TableDataInfo getAttCountList(AttDataDetailsBean bean) {
|
public TableDataInfo getAttCountList(AttDataDetailsBean bean) {
|
||||||
try{
|
try{
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,14 @@ public class AttDataDetailsBean {
|
||||||
* 考勤日期
|
* 考勤日期
|
||||||
*/
|
*/
|
||||||
private String attCurrentDay;
|
private String attCurrentDay;
|
||||||
|
/**
|
||||||
|
* 打卡时间
|
||||||
|
*/
|
||||||
|
private String attCurrentTime;
|
||||||
|
/**
|
||||||
|
* 打卡地址
|
||||||
|
*/
|
||||||
|
private String attAddress;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 上班打卡时间原始
|
* 上班打卡时间原始
|
||||||
|
|
|
||||||
|
|
@ -295,7 +295,7 @@
|
||||||
att_source_data
|
att_source_data
|
||||||
<where>
|
<where>
|
||||||
<if test="attCurrentDay != null and attCurrentDay != ''">
|
<if test="attCurrentDay != null and attCurrentDay != ''">
|
||||||
and awa.att_current_day = #{attCurrentDay}
|
and att_current_day = #{attCurrentDay}
|
||||||
</if>
|
</if>
|
||||||
<if test="userName != null and userName != ''">
|
<if test="userName != null and userName != ''">
|
||||||
and locate(#{userName},awa.user_name)
|
and locate(#{userName},awa.user_name)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue