From bc21504c64e2868934de29086e14da6dcbf47c65 Mon Sep 17 00:00:00 2001 From: ysCha Date: Tue, 10 Feb 2026 14:45:48 +0900 Subject: [PATCH] =?UTF-8?q?[1379]=20=EA=B2=AC=EC=A0=81=EC=84=9C=20?= =?UTF-8?q?=EC=B6=9C=EB=A0=A5=20zip,=20address,=20tel,=20fax=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/interplug/qcast/biz/estimate/EstimateService.java | 5 ----- 1 file changed, 5 deletions(-) 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 c31432df..50bb33ba 100644 --- a/src/main/java/com/interplug/qcast/biz/estimate/EstimateService.java +++ b/src/main/java/com/interplug/qcast/biz/estimate/EstimateService.java @@ -1870,7 +1870,6 @@ public class EstimateService { applyExcelNumberFormat(workbook); applyExcelFixedNumberFormat(workbook, Arrays.asList("H25", "C12"), "#,##0.00"); - applyExcelFixedNumberFormat(workbook, Arrays.asList("I2"), "#,##0.00\" kW\""); applyExcelFixedNumberFormat(workbook, Arrays.asList("X32", "I44"), "#,##0.00"); ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); @@ -2043,10 +2042,6 @@ public class EstimateService { return value; } String normalized = raw.replace(",", ""); - String upper = normalized.toUpperCase(Locale.ROOT); - if (upper.endsWith("KW")) { - normalized = normalized.substring(0, normalized.length() - 2).trim(); - } if (!normalized.matches("[-+]?\\d+(\\.\\d+)?")) { return value; }