Commit faff6275 authored by 廖旭伟's avatar 廖旭伟

考勤汇总节假日周末补班没有正常汇总bug修改

parent e77f992e
...@@ -212,7 +212,7 @@ public class AttendanceStatServiceImpl extends AbstractCRUDServiceImpl<Attendanc ...@@ -212,7 +212,7 @@ public class AttendanceStatServiceImpl extends AbstractCRUDServiceImpl<Attendanc
int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK); int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK);
if(dayOfWeek==1||dayOfWeek==7){ if(dayOfWeek==1||dayOfWeek==7){
//节假日周末补班 //节假日周末补班
if(!isReturn){ if(holidayEntity != null && holidayEntity.getWorkorholiday()==1){
query.setDayOfWeek(2); query.setDayOfWeek(2);
} }
}else { }else {
......
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