Skip to content

Commit

Permalink
fix: 구두 심사 결과 오류 수정 (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
yesjuhee authored Dec 26, 2024
1 parent 3d12b50 commit 4b9db4c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/modules/students/students.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ export class StudentsService {
thesisInfoId: mainThesisInfo.id,
reviewerId: headReviewerId,
contentStatus: ReviewStatus.UNEXAMINED,
presentationStatus: ReviewStatus.UNEXAMINED,
presentationStatus: ReviewStatus.PASS, // 최종 심사는 구두 심사 없음
isFinal: true,
}
);
Expand Down Expand Up @@ -646,6 +646,7 @@ export class StudentsService {
}
if (process.currentPhase === Stage.MAIN) {
reviewData.push(
// 본심 심사
...newAdvisorIds.map((id) => {
return {
thesisInfoId: mainThesisInfo.id,
Expand Down Expand Up @@ -740,6 +741,7 @@ export class StudentsService {
}
if (process.currentPhase === Stage.MAIN) {
reviewData.push(
// 본심 심사
...newCommitteeIds.map((id) => {
return {
thesisInfoId: mainThesisInfo.id,
Expand Down Expand Up @@ -1964,6 +1966,7 @@ export class StudentsService {
});
}
if (foundStudent.studentProcess.currentPhase === Stage.MAIN) {
// 본심 심사
reviewData.push({
thesisInfoId: mainThesisInfo.id,
reviewerId,
Expand Down Expand Up @@ -2197,7 +2200,7 @@ export class StudentsService {
thesisInfoId: mainThesisInfo.id,
reviewerId: headReviewerId,
contentStatus: ReviewStatus.UNEXAMINED,
presentationStatus: ReviewStatus.UNEXAMINED,
presentationStatus: ReviewStatus.PASS, // 최종 심사는 구두 심사 없음
isFinal: true,
}
);
Expand Down

0 comments on commit 4b9db4c

Please sign in to comment.