修复合计列
This commit is contained in:
parent
952a8e845c
commit
b331152d27
|
|
@ -2860,7 +2860,7 @@ public class SIAccountServiceImpl extends Service implements SIAccountService {
|
|||
BigDecimal value = new BigDecimal(0);
|
||||
for(Map<String, Object> record : records){
|
||||
BigDecimal addValue = null;
|
||||
if(record.get(numKey) == null || !StringUtils.isNumeric(record.get(numKey).toString())){
|
||||
if(record.get(numKey) == null || StringUtils.isBlank(record.get(numKey).toString())){
|
||||
addValue = new BigDecimal(0);
|
||||
}else{
|
||||
addValue = new BigDecimal(record.get(numKey).toString());
|
||||
|
|
|
|||
Loading…
Reference in New Issue