diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignCheckInExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignCheckInExe.java index 0644bafe..d674c893 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignCheckInExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignCheckInExe.java @@ -59,7 +59,7 @@ public class SignCheckInExe { int targetDayIndex = saudiToday.getDayOfWeek().getValue(); - targetDayIndex = targetDayIndex +6; + targetDayIndex = targetDayIndex +3; ResponseAssert.isTrue(OtherErrorCode.SIGN_IN_CANNOT_ADVANCE, targetDayIndex >= 1); diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignInStatusQueryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignInStatusQueryExe.java index 9a2066ce..de825567 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignInStatusQueryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SignInStatusQueryExe.java @@ -35,7 +35,7 @@ public class SignInStatusQueryExe { LocalDate weekStartDate = saudiToday.with(DayOfWeek.MONDAY); int currentDayIndex = saudiToday.getDayOfWeek().getValue(); - currentDayIndex = currentDayIndex + 6; + currentDayIndex = currentDayIndex + 3; List configs = dailyConfigDAO.selectList( new LambdaQueryWrapper() diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SupplementCheckInExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SupplementCheckInExe.java index e66ad872..822d7f56 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SupplementCheckInExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/signin/SupplementCheckInExe.java @@ -60,7 +60,7 @@ public class SupplementCheckInExe { LocalDate weekStartDate = saudiToday.with(DayOfWeek.MONDAY); int currentDayIndex = saudiToday.getDayOfWeek().getValue(); - currentDayIndex = currentDayIndex + 6; + currentDayIndex = currentDayIndex + 3; ResponseAssert.isTrue(OtherErrorCode.SIGN_IN_SUPPLEMENT_ONLY_PAST, targetDayIndex < currentDayIndex);