Browse Source

Merge remote-tracking branch 'origin/master'

Joburgess 5 years ago
parent
commit
3f66f6d49d

+ 2 - 2
mec-biz/src/main/java/com/ym/mec/biz/service/impl/ClassGroupServiceImpl.java

@@ -1645,10 +1645,10 @@ public class ClassGroupServiceImpl extends BaseServiceImpl<Integer, ClassGroup>
 
         WhileNode:
         while (true) {
-            /*if(classGroup4MixDto.getHoliday() && !holiday.containsKey(now.getYear())){
+            if(classGroup4MixDto.getHoliday() && !holiday.containsKey(now.getYear())){
                 holiday = jiaRiFeignService.query(now.getYear());
                 holidayDays = holiday.get(now.getYear());
-            }*/
+            }
             if (classGroup4MixDto.getHoliday() && holidayDays.containsKey(now.format(DateTimeFormatter.ofPattern("MMdd")))) {
                 now = now.plusDays(1);
                 continue;