-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# 572 전체 취업 동아리 엑셀 출력 #574
Conversation
|
||
val creationHelper = workBook.creationHelper | ||
val hyperlink = creationHelper.createHyperlink(HyperlinkType.URL) | ||
hyperlink.address = "https://bitgouel-admin.vercel.app/main/club/detail/${club.id}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
프론트 링크가 변경될 수 있으니 환경변수로 처리하는 건 어떨까요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
7a0b0c2 반영했습니다 ~
val grade2ndStudentCount = studentRepository.countByClubAndGrade(club, 2) | ||
row.createCellWithOptions(8, grade2ndStudentCount.toString(), defaultStyle) | ||
|
||
val grade3ndStudentCount = studentRepository.countByClubAndGrade(club, 3) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3rd로 표기하는게 맞아보여요
그리고 문법적으로 본다면 3rdGradeXXX가 조금 더 적절하지 않나 싶어요
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
9074f6b 변수 선언 시 숫자가 앞으로 갈 수 없어서 grade3rdStudentCount
로만 변경해 주었습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다 🫡
💡 배경 및 개요
전체 취업 동아리 엑셀 출력
Resolves: #572
📃 작업내용
출력했을 때 나오는 엑셀 형식입니다. 디자인적인 요소는 장학사님과 이야기하면서 개선해 나가겠습니다.