Skip to content

Commit

Permalink
fix(#81) : 로직 수정
Browse files Browse the repository at this point in the history
- 마이스터 전형에서 일반전형으로 바뀐 원서는 getType()을 사용했을 때만 REGULAR로 나오고 실제 디비에는 MEISTER_TALENT로 들어가서 그룹별 메시지를 보낼 때 번거로움이 있어서 원서 전형 자체를 REGULAR로 바꾸기로 결정했어요.
  • Loading branch information
jyj1289 committed May 30, 2024
1 parent 79cec34 commit 2c1470f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ public boolean isFailedNow() {

public void changeToRegular(CalculateFormScoreService calculateFormScoreService) {
this.changedToRegular = true;
this.type = FormType.REGULAR;

Double subjectGradeScore = calculateFormScoreService.calculateSubjectGradeScore(this);
this.score.updateSubjectScore(subjectGradeScore);
Expand Down

0 comments on commit 2c1470f

Please sign in to comment.