Skip to content

Commit

Permalink
fix(#134): 검정고시 지원자는 학교 코드가 빈 문자열이기 때문에 parseInt를 제거했어요.
Browse files Browse the repository at this point in the history
  • Loading branch information
jyj1289 committed Sep 24, 2024
1 parent bd2b3ba commit 13383d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public Resource execute() throws IOException {
schoolCell.setCellStyle(defaultCellStyle);

Cell schoolCodeCell = row.createCell(10);
schoolCodeCell.setCellValue(Integer.parseInt(form.getEducation().getSchool().getCode()));
schoolCodeCell.setCellValue(form.getEducation().getSchool().getCode());
schoolCodeCell.setCellStyle(defaultCellStyle);

Cell subjectGradeScoreCell = row.createCell(11);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public Resource execute() throws IOException {
schoolCell.setCellStyle(defaultCellStyle);

Cell schoolCodeCell = row.createCell(10);
schoolCodeCell.setCellValue(Integer.parseInt(form.getEducation().getSchool().getCode()));
schoolCodeCell.setCellValue(form.getEducation().getSchool().getCode());
schoolCodeCell.setCellStyle(defaultCellStyle);

Cell subjectGradeScoreCell = row.createCell(11);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public Resource execute() throws IOException {
schoolCell.setCellStyle(defaultCellStyle);

Cell schoolCodeCell = row.createCell(9);
schoolCodeCell.setCellValue(Integer.parseInt(form.getEducation().getSchool().getCode()));
schoolCodeCell.setCellValue(form.getEducation().getSchool().getCode());
schoolCodeCell.setCellStyle(defaultCellStyle);

Cell subjectGradeScoreCell = row.createCell(10);
Expand Down

0 comments on commit 13383d1

Please sign in to comment.