|
@@ -352,8 +352,6 @@ public class AttendanceServiceImpl implements AttendanceService {
|
|
|
String[] s = String.valueOf(attendanceTableWork).split(" ");
|
|
|
if (s[0].equals(dateDay)) {
|
|
|
jsonObjectDay.put("attendanceTableWork", s[1] + " 上班打卡 已打卡");
|
|
|
- } else {
|
|
|
- break;
|
|
|
}
|
|
|
}
|
|
|
Object attendanceTableOffWork = jsonObject.get("attendanceTableOffWork");
|
|
@@ -361,8 +359,6 @@ public class AttendanceServiceImpl implements AttendanceService {
|
|
|
String[] s = String.valueOf(attendanceTableOffWork).split(" ");
|
|
|
if (s[0].equals(dateDay)) {
|
|
|
jsonObjectDay.put("attendanceTableOffWork", s[1] + " 下班打卡 已打卡");
|
|
|
- } else {
|
|
|
- break;
|
|
|
}
|
|
|
}
|
|
|
Object attendanceTableWorkPm = jsonObject.get("attendanceTableWorkPm");
|
|
@@ -370,8 +366,6 @@ public class AttendanceServiceImpl implements AttendanceService {
|
|
|
String[] s = String.valueOf(attendanceTableWorkPm).split(" ");
|
|
|
if (s[0].equals(dateDay)) {
|
|
|
jsonObjectDay.put("attendanceTableWorkPm", s[1] + " 上班打卡 已打卡");
|
|
|
- } else {
|
|
|
- break;
|
|
|
}
|
|
|
}
|
|
|
Object attendanceTableOffWorkPm = jsonObject.get("attendanceTableOffWorkPm");
|
|
@@ -379,8 +373,6 @@ public class AttendanceServiceImpl implements AttendanceService {
|
|
|
String[] s = String.valueOf(attendanceTableOffWorkPm).split(" ");
|
|
|
if (s[0].equals(dateDay)) {
|
|
|
jsonObjectDay.put("attendanceTableOffWorkPm", s[1] + " 下班打卡 已打卡");
|
|
|
- } else {
|
|
|
- break;
|
|
|
}
|
|
|
}
|
|
|
}
|