Commit fdb2efd9 authored by chase's avatar chase

fix bug 读取公式时有keyin字段

parent 02a09b6f
......@@ -257,7 +257,10 @@ public class FunctionBase {
else {return new BigDecimal(0);}
}
}else{
}else if (evalStr.indexOf("${KeyIn}")>0){
return new BigDecimal(0);
}
else{
try {
BigDecimal bigDecimal = new BigDecimal(evalStr);
if (!dss.isEmpty()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment