Skip to content

Commit

Permalink
Merge pull request #349 from LearnsMate/feature/config
Browse files Browse the repository at this point in the history
♻️ 코드 수정 : 강의 endYear, endMonth 일부 필터링 오류 수정
  • Loading branch information
JoJeHuni authored Dec 10, 2024
2 parents 72452c7 + d0e2596 commit 32d6e43
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -284,11 +284,6 @@ private double calculateConversionRate(Integer clickCount, Integer purchaseCount
}

public LectureStatsVO getLectureStatsWithFilterAndRates(String lectureCode, LectureStatsFilterDTO filter) {
log.info(filter.getEndMonth().toString());
log.info(filter.getEndYear().toString());
log.info(filter.getStartMonth().toString());
log.info(filter.getStartYear().toString());

LectureDTO lectureDTO = lectureService.getLectureById(lectureCode);
if (lectureDTO == null) throw new CommonException(StatusEnum.LECTURE_NOT_FOUND);

Expand Down

0 comments on commit 32d6e43

Please sign in to comment.