|
@@ -5492,7 +5492,6 @@ public class FormulaServiceImpl extends BaseServiceImpl<FormulaMapper, Formula>
|
|
|
/*设计值可以是数值类型,或空(等效0)*/
|
|
|
if (dataFd != null) {
|
|
|
List<Object> values = dataFd.getRawValue();
|
|
|
- boolean nonNumeric = values.stream().filter(StringUtils::isNotEmpty).anyMatch(e -> !StringUtils.isNumber(e));
|
|
|
/*保留小数位,去除*/
|
|
|
values = values.stream().map(e -> StringUtils.number2StringZero(e,8)).collect(Collectors.toList());
|
|
|
//boolean nonNumeric = values.stream().filter(StringUtils::isNotEmpty).anyMatch(e -> !StringUtils.isNumber(e));
|