From 533d8454d977a7a0a764151853062c640db6b75f Mon Sep 17 00:00:00 2001 From: Vladislav Selitskii Date: Tue, 20 Jul 2021 18:14:46 +0400 Subject: [PATCH] Handle STR type #123 --- .../src/com/haulmont/yarg/formatters/impl/XlsxFormatter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/core/src/com/haulmont/yarg/formatters/impl/XlsxFormatter.java b/core/modules/core/src/com/haulmont/yarg/formatters/impl/XlsxFormatter.java index cc1e9ad..3a92a29 100644 --- a/core/modules/core/src/com/haulmont/yarg/formatters/impl/XlsxFormatter.java +++ b/core/modules/core/src/com/haulmont/yarg/formatters/impl/XlsxFormatter.java @@ -1008,7 +1008,7 @@ protected void updateCell(WorksheetPart worksheetPart, BandData bandData, Cell n is.setT(t); newCell.setIs(is); newCell.setV(""); - if (newCell.getT() == STCellType.S) { + if (newCell.getT() == STCellType.S || newCell.getT() == STCellType.STR) { newCell.setT(STCellType.INLINE_STR); } }