Commit f90d4872 by huluobin

定时任务

parent 61706f28
......@@ -452,8 +452,10 @@ public class Schedule {
career.setMonthServeNum(monthAdminResult.getTotal_service_count());
//当月信息录入完整度
career.setMonthInfoPercent(monthAdminResult.getAvg_data_integrity().divide(new BigDecimal(100), 2, BigDecimal.ROUND_HALF_UP));
BigDecimal montInfoPercent = monthAdminResult.getAvg_data_integrity();
if (montInfoPercent != null) {
career.setMonthInfoPercent(montInfoPercent.divide(new BigDecimal(100), 2, BigDecimal.ROUND_HALF_UP));
}
/*总计*/
//总考勤准时率
......
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