Commit ea139bfd authored by 廖旭伟's avatar 廖旭伟

考勤汇总任务添加日志参数

parent 37dee892
package com.mortals.xhx.daemon.applicationservice;
import cn.hutool.core.date.DateUtil;
import com.alibaba.fastjson.JSONObject;
import com.mortals.framework.service.ICacheService;
import com.mortals.framework.springcloud.service.IApplicationStartedService;
import com.mortals.framework.util.StringUtils;
......@@ -79,7 +80,7 @@ public class StaffCheckSummaryService implements IApplicationStartedService {
checkOtherRecordService.summaryCheck(query);
}
if(query.getCheckType()==null){
log.info("绩效分数汇总开始");
log.info("绩效分数汇总开始:"+ JSONObject.toJSONString(query));
checkAttendRecordService.summaryCheck(query);
checkEffectRecordService.summaryCheck(query);
checkGoworkRecordService.summaryCheck(query);
......
......@@ -92,6 +92,7 @@ public class CheckWindowWorkmanPerformServiceImpl extends AbstractCRUDServiceImp
@Override
public List<StaffCheckSummaryVo> summaryCheck(StaffCheckSummaryQuery query) throws AppException {
log.info("汇总自评:"+JSONObject.toJSONString(query));
if (query.getYear()==null || query.getMonth()==null) {
Calendar calendar = Calendar.getInstance();
query.setYear(calendar.get(Calendar.YEAR));
......
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