diff --git a/src/main/java/com/interplug/qcast/biz/estimate/EstimateService.java b/src/main/java/com/interplug/qcast/biz/estimate/EstimateService.java index 8c6424ab..6f8b2248 100644 --- a/src/main/java/com/interplug/qcast/biz/estimate/EstimateService.java +++ b/src/main/java/com/interplug/qcast/biz/estimate/EstimateService.java @@ -717,6 +717,7 @@ public class EstimateService { } } catch (Exception e) { + e.printStackTrace(); throw new QcastException(ErrorCode.INTERNAL_SERVER_ERROR); } } @@ -2223,7 +2224,7 @@ public class EstimateService { // ArrayList 생성 변환 ArrayList list = new ArrayList(); for (ItemRequest pcsSerItemReq : circuitList) { - list.add(pcsSerItemReq.getCircuit()); + list.add(pcsSerItemReq.getCircuit().replaceAll("\\(", "").replaceAll("\\)", "")); } // ArrayList 회로 중복수 오름차순 정렬 diff --git a/src/main/resources/template/excel/excel_download_quotation_detail_template.xlsx b/src/main/resources/template/excel/excel_download_quotation_detail_template.xlsx index 00d78f61..6719c165 100644 Binary files a/src/main/resources/template/excel/excel_download_quotation_detail_template.xlsx and b/src/main/resources/template/excel/excel_download_quotation_detail_template.xlsx differ