Skip to content

Commit

Permalink
Merge pull request #170 from Bamdoliro/fix/#169
Browse files Browse the repository at this point in the history
[버그] 최종 합격자 엑셀 추출시 아무것도 나오지 않는 오류 발생
  • Loading branch information
jyj1289 authored Jan 9, 2025
2 parents fb3de72 + 940c7c1 commit bab7134
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class ExportFinalPassedFormUseCase {
private final XlsxService xlsxService;

public Resource execute() throws IOException {
List<Form> formList = formFacade.getSortedFormList(FormStatus.PASSED);
List<Form> formList = formFacade.getSortedFormList(FormStatus.ENTERED);
Workbook workbook = xlsxService.openTemplate("최종합격자");
Sheet sheet = workbook.getSheetAt(0);

Expand Down

0 comments on commit bab7134

Please sign in to comment.