|
@@ -110,6 +110,17 @@ public class EnrollmentRegistrationService extends ServiceImpl<EnrollmentRegistr
|
|
if (StringUtils.isNotBlank(projectReportData.getCompanyId())) {
|
|
if (StringUtils.isNotBlank(projectReportData.getCompanyId())) {
|
|
queryWrapper.eq("so.parent_id", projectReportData.getCompanyId());
|
|
queryWrapper.eq("so.parent_id", projectReportData.getCompanyId());
|
|
}
|
|
}
|
|
|
|
+ if (StringUtils.isNotBlank(projectReportData.getLoginFlag())) {
|
|
|
|
+ queryWrapper.eq("u.login_flag", projectReportData.getLoginFlag());
|
|
|
|
+ }
|
|
|
|
+ if (StringUtils.isNotBlank(projectReportData.getPoliticalOutlook())) {
|
|
|
|
+ queryWrapper.eq("a.political_outlook", projectReportData.getPoliticalOutlook());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (projectReportData.getCreateDates() != null && projectReportData.getCreateDates().length > 0) {
|
|
|
|
+ queryWrapper.between("a.entry_date", projectReportData.getCreateDates()[0], projectReportData.getCreateDates()[1]);
|
|
|
|
+ }
|
|
|
|
+
|
|
IPage<EnrollmentRegistration> list = mapper.findList(page, queryWrapper);
|
|
IPage<EnrollmentRegistration> list = mapper.findList(page, queryWrapper);
|
|
return list;
|
|
return list;
|
|
|
|
|
|
@@ -281,7 +292,7 @@ public class EnrollmentRegistrationService extends ServiceImpl<EnrollmentRegistr
|
|
|
|
|
|
Map<String, String> newMap = pingMap(procDefId, procDefKey, businessTable, businessId, title, assignee, recordType);
|
|
Map<String, String> newMap = pingMap(procDefId, procDefKey, businessTable, businessId, title, assignee, recordType);
|
|
allMap.put("入职", newMap);
|
|
allMap.put("入职", newMap);
|
|
- if (StringUtils.isBlank(reportData.getIsPc())) {
|
|
|
|
|
|
+ if ("2".equals(reportData.getIsPc())) {
|
|
SpringUtil.getBean(IFlowableApi.class).startForFenNew(allMap);
|
|
SpringUtil.getBean(IFlowableApi.class).startForFenNew(allMap);
|
|
}
|
|
}
|
|
/*} else {
|
|
/*} else {
|