Skip to content

Commit

Permalink
Merge pull request #149 from SystemConsultantGroup/fix/achievement-fo…
Browse files Browse the repository at this point in the history
…rmat

[FIX] ISSN 미입력시 미제출 표시에서 빈칸으로 표시하도록 수정
  • Loading branch information
jcy0308 authored Sep 1, 2024
2 parents a4288cd + b79fce2 commit fa61edd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/modules/achievements/achievements.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,7 @@ export class AchievementsService {
record["실적 구분"] = this.PerformanceToFullname(achievement.performance);
record["학술지 또는 학술대회명"] = achievement.journalName;
record["논문 제목"] = achievement.paperTitle;
(record["ISSN"] = achievement.ISSN ? achievement.ISSN : "미제출"),
(record["게재년월일"] = achievement.publicationDate);
(record["ISSN"] = achievement.ISSN ? achievement.ISSN : ""), (record["게재년월일"] = achievement.publicationDate);
record["주저자여부"] = this.authorToFullname(achievement.authorType);
record["저자수"] = achievement.authorNumbers;

Expand Down

0 comments on commit fa61edd

Please sign in to comment.