|
@@ -345,11 +345,14 @@ public class FormulaServiceImpl extends BaseServiceImpl<FormulaMapper, Formula>
|
|
|
}
|
|
|
}
|
|
|
int scale = StringUtils.getScale(values);
|
|
|
- FormulaUtils.write(t.getValue(), values.stream().filter(StringUtils::isNotEmpty).map(u -> {
|
|
|
- if(StringUtils.isNumber(u)){
|
|
|
- return StringUtils.number2String(u, scale);
|
|
|
- } return u;
|
|
|
- }
|
|
|
+ FormulaUtils.write(t.getValue(), values.stream().map(u -> {
|
|
|
+ if(StringUtils.isEmpty(u)){
|
|
|
+ return "/";
|
|
|
+ } else if(StringUtils.isNumber(u)){
|
|
|
+ return StringUtils.number2String(u, scale);
|
|
|
+ }
|
|
|
+ return u;
|
|
|
+ }
|
|
|
).collect(Collectors.toList()), true);
|
|
|
// if(t.getValue().getEName().contains("±")){
|
|
|
// /*存在偏差范围则获取的是偏差值:实测-设计*/
|
|
@@ -1493,7 +1496,7 @@ public class FormulaServiceImpl extends BaseServiceImpl<FormulaMapper, Formula>
|
|
|
|
|
|
/**加页增容*/
|
|
|
public void copy(FormData fd,TableElementConverter tec){
|
|
|
- if(fd.getAddPages()>30){
|
|
|
+ if(fd.getAddPages()>100){
|
|
|
/*最大页数30*/
|
|
|
StaticLog.error("{}超过最大30页限制",fd.getTableChName()+fd.getEName());
|
|
|
return;
|