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; } diff --git a/src/main/resources/mappers/estimate/estimateMapper.xml b/src/main/resources/mappers/estimate/estimateMapper.xml index 14db6c75..fb721f5c 100644 --- a/src/main/resources/mappers/estimate/estimateMapper.xml +++ b/src/main/resources/mappers/estimate/estimateMapper.xml @@ -396,112 +396,6 @@