家族-收入-周期列表-按成员加入时间做限制
This commit is contained in:
@@ -122,7 +122,7 @@ public class HalfMonthCycleTimeUtil {
|
||||
ZonedDateTime zdt = ZonedDateTime.ofInstant(date.toInstant(), zoneId);
|
||||
ZonedDateTime startTime = getCycleTimeZdt(zdt);
|
||||
|
||||
while (zdt.isAfter(limitStartTime)) {
|
||||
while (startTime.equals(limitStartTime) || startTime.isAfter(limitStartTime)) {
|
||||
ZonedDateTime endTime = getCycleEndTimeZdt(zdt);
|
||||
|
||||
CycleDateVo vo = new CycleDateVo();
|
||||
|
Reference in New Issue
Block a user