mirror of https://gitee.com/y_project/RuoYi.git
优化excel/scale属性导出单元格数值类型
parent
d318b719fc
commit
8fcc548d34
|
@ -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