This commit is contained in:
zds
2022-12-26 14:40:44 +08:00
parent 18f773cabb
commit 2001d52197

View File

@@ -4741,7 +4741,10 @@ public class AutoformulaServiceImpl implements AutoformulaService {
String now_qty = WasteBallTime.getString( brf.toLowerCase()+"_qty");
if (StrUtil.isNotEmpty(now_qty)) {
doubles.add(Double.valueOf(now_qty));
double now = Double.valueOf(now_qty);
if(now != 99){
doubles.add(Double.valueOf(now_qty));
}
}
}
}