feature/jp-0331 #526

Open
jungpyo2001 wants to merge 998 commits from feature/jp-0331 into main
2 changed files with 7 additions and 0 deletions
Showing only changes of commit a12a753ec5 - Show all commits

View File

@ -1619,6 +1619,13 @@ public class EstimateService {
if (estimateRequest.getSchDrawingFlg().indexOf("4") < 0) {
}
if ("EXCEL2".equals(estimateRequest.getSchDownload())) {
workbook.removeSheetAt(workbook.getSheetIndex("特異事項"));
workbook.removeSheetAt(workbook.getSheetIndex("発電シミュレーション"));
workbook.removeSheetAt(workbook.getSheetIndex("割付図・系統図"));
workbook.removeSheetAt(workbook.getSheetIndex("架台図"));
}
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
workbook.write(byteArrayOutputStream);
excelBytes = byteArrayOutputStream.toByteArray();