Commit 653647ba by lal Committed by chenzg

提交

parent 0b72499e
...@@ -1729,6 +1729,7 @@ public class ClockInController { ...@@ -1729,6 +1729,7 @@ public class ClockInController {
KqglMainKqz attgro = kqglmainkqzmapper.getAttendanceGroupInformationByUserid(userBean.getEmpNum(),userBean.getOrgCode()); //考勤组信息 KqglMainKqz attgro = kqglmainkqzmapper.getAttendanceGroupInformationByUserid(userBean.getEmpNum(),userBean.getOrgCode()); //考勤组信息
if(attgro != null) {
//APP获取当前天的考勤信息 //APP获取当前天的考勤信息
AttendanceCardListDto attdate = MethodCall(userBean.getOrgCode(),userBean.getEmpNum(),attconditions.getDate()); AttendanceCardListDto attdate = MethodCall(userBean.getOrgCode(),userBean.getEmpNum(),attconditions.getDate());
...@@ -1873,7 +1874,12 @@ public class ClockInController { ...@@ -1873,7 +1874,12 @@ public class ClockInController {
attdate.setChanged_time(changed_time); attdate.setChanged_time(changed_time);
return ResultUtil.data(attdate); return ResultUtil.data(attdate);
}else {
AttendanceCardListDto attdate_ = AttendanceCardListDto.builder().build();
return ResultUtil.data(attdate_,"未加入考勤组");
}
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment