src/main/java/kr/wisestone/owl/service/impl/CompanyFieldServiceImpl.java
@@ -443,7 +443,10 @@ * @return boolean */ private Boolean cellNullCheck (Cell cell) { return cell != null && cell.getStringCellValue() != null && cell.getCellType() != Cell.CELL_TYPE_BLANK; if (cell != null && cell.getStringCellValue() != null) { cell.setCellValue(cell.getStringCellValue().trim());//셀 값 공백 제거 } return cell != null && cell.getStringCellValue() != null && !cell.getStringCellValue().equals("") && cell.getCellType() != Cell.CELL_TYPE_BLANK; } private void telTypeCheck (Cell cell, int rowIndex) {