报告bug解决

This commit is contained in:
cdf
2025-12-25 17:19:32 +08:00
parent 9981b04ed6
commit 27aebf2ca4

View File

@@ -407,7 +407,7 @@ public class ReportServiceImpl implements ReportService {
return value.stream().filter(x -> x.getValueType().equals(name)).map(temp -> {
BigDecimal o = null;
try {
o = (BigDecimal) finalField.get(temp);
o = BigDecimal.valueOf((Double) finalField.get(temp));
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
}