优化导出对象的子列表为空会出现[]问题

pull/283/head
RuoYi 2 years ago
parent d936ce76b1
commit e0a5e704b0

@ -784,6 +784,10 @@ public class ExcelUtil<T>
{
cellValue = RegExUtils.replaceFirst(cellValue, FORMULA_REGEX_STR, "\t$0");
}
if (value instanceof Collection && StringUtils.equals("[]", cellValue))
{
cellValue = StringUtils.EMPTY;
}
cell.setCellValue(StringUtils.isNull(cellValue) ? attr.defaultValue() : cellValue + attr.suffix());
}
else if (ColumnType.NUMERIC == attr.cellType())

Loading…
Cancel
Save