优化excel/scale属性导出单元格数值类型
This commit is contained in:
parent
8c7b93ec4f
commit
1cd2eef899
|
@ -1020,7 +1020,7 @@ public class ExcelUtil<T>
|
|||
}
|
||||
else if (value instanceof BigDecimal && -1 != attr.scale())
|
||||
{
|
||||
cell.setCellValue((((BigDecimal) value).setScale(attr.scale(), attr.roundingMode())).toString());
|
||||
cell.setCellValue((((BigDecimal) value).setScale(attr.scale(), attr.roundingMode())).doubleValue());
|
||||
}
|
||||
else if (!attr.handler().equals(ExcelHandlerAdapter.class))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue