Showing
2 changed files
with
2 additions
and
1 deletions
| ... | ... | @@ -273,7 +273,8 @@ public class ProductSampleConfirmationSlipController extends DefaultBaseControll |
| 273 | 273 | int brandRow = startRow + (i * 2); // 5, 7, 9, ... |
| 274 | 274 | int specRow = startRow + (i * 2) + 1; // 6, 8, 10, ... |
| 275 | 275 | ExcelUtil.setCellValue(sheet, brandRow, 1, bo.getBrand()); |
| 276 | - ExcelUtil.setCellValue(sheet, specRow, 3, bo.getStatus()); | |
| 276 | + String cleanStatus = StringUtils.trimToEmpty(bo.getStatus()); | |
| 277 | + ExcelUtil.setCellValue(sheet, specRow, 3, cleanStatus); | |
| 277 | 278 | String latex = LatexFormulaExcelExporterUtil.convertToLatex(formulaComponentList); |
| 278 | 279 | if (StringUtils.isNotBlank(latex)) { |
| 279 | 280 | LatexFormulaExcelExporterUtil.insertLatexImageToCell(workbook, sheet, latex, specRow, 1, 1, 2); | ... | ... |
No preview for this file type