Commit 53786e66 authored by maoying's avatar maoying

修改中心大屏巡查数据

parent 634fa458
......@@ -1437,12 +1437,13 @@ public class PointServiceImpl implements IPointService {
int over_num = Integer.parseInt(maps.get("over_num").toString());
int today_num = Integer.parseInt(maps.get("today_num").toString());
int miss_num = Integer.parseInt(maps.get("miss_num").toString());
int unfinish_num = Integer.parseInt(maps.get("unfinish_num").toString());
String passRate = "";
String passMiss = "";
if (over_num == 0) {
passRate = 0 + "";
} else {
passRate = getPercent(over_num, today_num);
passRate = getPercent(over_num, (over_num+unfinish_num));
}
// today_num = miss_num + today_num;
if (miss_num == 0) {
......
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