|
@@ -185,7 +185,8 @@ public class TBDingApplyServiceImpl extends ServiceImpl<TBDingApplyMapper, TBDin
|
|
}
|
|
}
|
|
dpr = roleType == RoleTypeEnum.REGION_COORDINATOR ? null : dpr;
|
|
dpr = roleType == RoleTypeEnum.REGION_COORDINATOR ? null : dpr;
|
|
IPage<DingApplyUnDoneResult> dingApplyUnDoneResultIPage = this.baseMapper.flowTaskUnDoneList(iPage, serviceId,
|
|
IPage<DingApplyUnDoneResult> dingApplyUnDoneResultIPage = this.baseMapper.flowTaskUnDoneList(iPage, serviceId,
|
|
- name, supplierId, customName, startTime, endTime, applyStartTime, applyEndTime, dpr);
|
|
|
|
|
|
+ name, supplierId, customName, startTime, endTime, applyStartTime, applyEndTime, dpr,
|
|
|
|
+ Objects.nonNull(roleType) ? roleType.name() : null);
|
|
if (Objects.nonNull(dingApplyUnDoneResultIPage) && !CollectionUtils.isEmpty(
|
|
if (Objects.nonNull(dingApplyUnDoneResultIPage) && !CollectionUtils.isEmpty(
|
|
dingApplyUnDoneResultIPage.getRecords())) {
|
|
dingApplyUnDoneResultIPage.getRecords())) {
|
|
for (DingApplyUnDoneResult d : dingApplyUnDoneResultIPage.getRecords()) {
|
|
for (DingApplyUnDoneResult d : dingApplyUnDoneResultIPage.getRecords()) {
|
|
@@ -261,7 +262,8 @@ public class TBDingApplyServiceImpl extends ServiceImpl<TBDingApplyMapper, TBDin
|
|
dpr = roleType == RoleTypeEnum.REGION_COORDINATOR ? null : dpr;
|
|
dpr = roleType == RoleTypeEnum.REGION_COORDINATOR ? null : dpr;
|
|
IPage<DingApplyDoneResult> dingApplyDoneResultIPage = this.baseMapper.flowTaskDoneList(iPage, serviceId, name,
|
|
IPage<DingApplyDoneResult> dingApplyDoneResultIPage = this.baseMapper.flowTaskDoneList(iPage, serviceId, name,
|
|
supplierId, Objects.nonNull(dingExceptionApprove) ? dingExceptionApprove.name() : null, customName,
|
|
supplierId, Objects.nonNull(dingExceptionApprove) ? dingExceptionApprove.name() : null, customName,
|
|
- startTime, endTime, applyStartTime, applyEndTime, dpr);
|
|
|
|
|
|
+ startTime, endTime, applyStartTime, applyEndTime, dpr,
|
|
|
|
+ Objects.nonNull(roleType) ? roleType.name() : null);
|
|
if (Objects.nonNull(dingApplyDoneResultIPage) && !CollectionUtils.isEmpty(
|
|
if (Objects.nonNull(dingApplyDoneResultIPage) && !CollectionUtils.isEmpty(
|
|
dingApplyDoneResultIPage.getRecords())) {
|
|
dingApplyDoneResultIPage.getRecords())) {
|
|
for (DingApplyDoneResult d : dingApplyDoneResultIPage.getRecords()) {
|
|
for (DingApplyDoneResult d : dingApplyDoneResultIPage.getRecords()) {
|