|
@@ -18,6 +18,7 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
+import java.time.LocalDate;
|
|
|
import java.time.LocalTime;
|
|
|
import java.time.format.DateTimeFormatter;
|
|
|
import java.util.Date;
|
|
@@ -69,6 +70,20 @@ public class DutySignInRecordServiceImpl extends ServiceImpl<DutySignInRecordMap
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
+ public List<DutySignInRecord> queryCheckDayList(DutySignInRecordVo signInRecordVo) {
|
|
|
+ List<DutySignInRecord> list = signInRecordMapper.queryList(signInRecordVo);
|
|
|
+ if (list != null && list.size() > 0) {
|
|
|
+ list.forEach(signInRecord -> {
|
|
|
+ if ("0".equals(signInRecord.getStatus()) || "4".equals(signInRecord.getStatus())) {
|
|
|
+ signInRecord.setTime(null);
|
|
|
+ }
|
|
|
+ signInRecord.setSignTime(signInRecord.getSignTime().substring(signInRecord.getSignTime().indexOf(" ") + 1));
|
|
|
+ });
|
|
|
+ }
|
|
|
+ return list;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
public boolean addSignIn(DutySignInRecord signInRecord) {
|
|
|
// now()
|
|
|
// LocalTime nowTime = LocalTime.now();
|
|
@@ -92,6 +107,9 @@ public class DutySignInRecordServiceImpl extends ServiceImpl<DutySignInRecordMap
|
|
|
log.info("指定时间:{}",time);
|
|
|
LocalTime nowTime = LocalTime.now();
|
|
|
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("HH:mm:ss");
|
|
|
+ DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd");
|
|
|
+ LocalDate localDate = LocalDate.now();
|
|
|
+ String date = df.format(localDate);
|
|
|
boolean before = nowTime.isAfter(time);
|
|
|
if (before) {
|
|
|
DutySignInRecord signOut = signInRecordMapper.queryByAccountId(signInRecord.getDeptId(),2,new Date());
|
|
@@ -100,7 +118,7 @@ public class DutySignInRecordServiceImpl extends ServiceImpl<DutySignInRecordMap
|
|
|
LocalTime localTime = LocalTime.parse(signEndTime, formatter);
|
|
|
boolean after = nowTime.isAfter(localTime);
|
|
|
signInRecord.setStatus("1");
|
|
|
- signInRecord.setSignTime(signEndTime);
|
|
|
+ signInRecord.setSignTime(date + " " + signEndTime);
|
|
|
if (!after) {
|
|
|
signInRecord.setStatus("3");
|
|
|
}
|
|
@@ -115,7 +133,7 @@ public class DutySignInRecordServiceImpl extends ServiceImpl<DutySignInRecordMap
|
|
|
boolean after = nowTime.isAfter(localTime);
|
|
|
if (sign == null) {
|
|
|
signInRecord.setType("1");
|
|
|
- signInRecord.setSignTime(signBeginTime);
|
|
|
+ signInRecord.setSignTime(date + " " + signBeginTime);
|
|
|
signInRecord.setStatus("1");
|
|
|
if (after) {
|
|
|
signInRecord.setStatus("2");
|
|
@@ -123,7 +141,7 @@ public class DutySignInRecordServiceImpl extends ServiceImpl<DutySignInRecordMap
|
|
|
} else {
|
|
|
if ("0".equals(sign.getStatus())) {
|
|
|
signInRecord.setType("1");
|
|
|
- signInRecord.setSignTime(signBeginTime);
|
|
|
+ signInRecord.setSignTime(date + " " + signBeginTime);
|
|
|
signInRecord.setStatus("1");
|
|
|
if (after) {
|
|
|
signInRecord.setStatus("2");
|
|
@@ -131,10 +149,20 @@ public class DutySignInRecordServiceImpl extends ServiceImpl<DutySignInRecordMap
|
|
|
signInRecord.setId(sign.getId());
|
|
|
return this.updateById(signInRecord);
|
|
|
} else {
|
|
|
+ DutySignInRecord signOut = signInRecordMapper.queryByAccountId(signInRecord.getDeptId(), 2, new Date());
|
|
|
signInRecord.setType("2");
|
|
|
String signEndTime = configService.selectConfigByKey("sign.end.time");
|
|
|
- signInRecord.setSignTime(signEndTime);
|
|
|
- signInRecord.setStatus("3");
|
|
|
+ LocalTime localEndTime = LocalTime.parse(signEndTime, formatter);
|
|
|
+ boolean afterEnd = nowTime.isAfter(localEndTime);
|
|
|
+ signInRecord.setStatus("1");
|
|
|
+ signInRecord.setSignTime(date + " " + signEndTime);
|
|
|
+ if (!afterEnd) {
|
|
|
+ signInRecord.setStatus("3");
|
|
|
+ }
|
|
|
+ if (signOut != null) {
|
|
|
+ signInRecord.setId(signOut.getId());
|
|
|
+ return this.updateById(signInRecord);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|