|
@@ -10,12 +10,14 @@ import org.fouram.core.base.service.BaseService;
|
|
|
import org.fouram.core.plugin.weixin.cp.util.WXCpOaUtil;
|
|
|
import org.fouram.core.util.BeanUtils;
|
|
|
import org.fouram.core.util.DateUtil;
|
|
|
+import org.fouram.core.util.LoggerUtil;
|
|
|
import org.fouram.core.util.Tools;
|
|
|
import org.fouram.entity.SapCheck;
|
|
|
import org.fouram.entity.SapCheckReport;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.google.common.collect.Maps;
|
|
|
import com.google.common.collect.Sets;
|
|
@@ -238,6 +240,7 @@ public class SapCheckService extends BaseService {
|
|
|
pd.put("pageCurrent", String.valueOf(pageSize * (pageNumber - 1)));
|
|
|
pd.put("pageSize", String.valueOf(pageSize));
|
|
|
}
|
|
|
+ LoggerUtil.info(JSON.toJSONString(pd));
|
|
|
return (List<Map<String, Object>>) findList("SapCheckMapper.findUserReports", pd);
|
|
|
}
|
|
|
|
|
@@ -253,6 +256,7 @@ public class SapCheckService extends BaseService {
|
|
|
pd.put("departId", departId);
|
|
|
pd.put("name", name);
|
|
|
pd.put("reportDaySql", getReportDaySql(startDate, endDate));
|
|
|
+ LoggerUtil.info(JSON.toJSONString(pd));
|
|
|
return (List<Map<String, Object>>) findList("SapCheckMapper.selectReportDayList", pd);
|
|
|
}
|
|
|
|