Commit 38745fe5 authored by zhkwei's avatar zhkwei

Merge remote-tracking branch 'origin/dev_mysql' into dev_mysql

parents 20ec568d f203dbd1
......@@ -257,7 +257,11 @@ public class FunctionBase {
else {return new BigDecimal(0);}
}
}else{
}else if (evalStr.indexOf("${KeyIn}")>0){
if (!dss.isEmpty()) return dss.get(0).getAmount();
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