|
@@ -216,6 +216,9 @@ public class SapCheckService extends BaseService {
|
|
}
|
|
}
|
|
|
|
|
|
public Object findUserReports(String startDate, String endDate, String departId, String name) throws Exception {
|
|
public Object findUserReports(String startDate, String endDate, String departId, String name) throws Exception {
|
|
|
|
+ if(StringUtils.isNotBlank(departId) && departId.endsWith(",")) {
|
|
|
|
+ departId = departId.substring(0, departId.length() - 1);
|
|
|
|
+ }
|
|
Map<String, String> pd = Maps.newHashMap();
|
|
Map<String, String> pd = Maps.newHashMap();
|
|
pd.put("startDate", startDate);
|
|
pd.put("startDate", startDate);
|
|
pd.put("endDate", endDate);
|
|
pd.put("endDate", endDate);
|