|
|
@ -1389,7 +1389,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
// 发送菜单消息-待处理项目-吹哨部门
|
|
|
|
this.sendWhistlingDeptItemHandleMenuNotice(deptIds, null); |
|
|
|
// 网格吹哨,上报市平台
|
|
|
|
pushToCityGridService.AppealReporting(handleProcessEntity.getId(), NumConstant.ZERO_STR); |
|
|
|
pushToCityGridService.appealReporting(handleProcessEntity.getId(), NumConstant.ZERO_STR); |
|
|
|
log.info("网格吹哨,上报市平台-结束"); |
|
|
|
// 上报网格化平台(社区吹哨)
|
|
|
|
} else if (ItemHandleCategoryEnum.HANDLE_REPORT.getValue() == dto.getHandleCategory()) { |
|
|
@ -1401,7 +1401,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
log.info("处理项目-上报网格化平台-if结束"); |
|
|
|
|
|
|
|
//社区吹哨,上报市平台
|
|
|
|
pushToCityGridService.AppealReporting(handleProcessEntity.getId(), NumConstant.ZERO_STR); |
|
|
|
pushToCityGridService.appealReporting(handleProcessEntity.getId(), NumConstant.ZERO_STR); |
|
|
|
log.info("社区吹哨-上报市平台-结束"); |
|
|
|
// 结案申请
|
|
|
|
} else if (ItemHandleCategoryEnum.HANDLE_CLOSING_CASE_APPLY.getValue() == dto.getHandleCategory()) { |
|
|
@ -1462,11 +1462,11 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
longTreeSet.addAll(newDeptIds); |
|
|
|
List<Long> deptIds = new ArrayList<>(longTreeSet); |
|
|
|
|
|
|
|
// 网格结案,社区结案,上报市平台
|
|
|
|
pushToCityGridService.AppealReporting(handleProcessEntity.getId(), NumConstant.ZERO_STR); |
|
|
|
// 网格结案申请,社区结案申请,上报市平台
|
|
|
|
// pushToCityGridService.AppealReporting(handleProcessEntity.getId(), NumConstant.ZERO_STR);
|
|
|
|
// 发送菜单消息-待处理项目-吹哨部门
|
|
|
|
this.sendWhistlingDeptItemHandleMenuNotice(deptIds, null); |
|
|
|
pushToCityGridService.AppealHandling(ConvertUtils.sourceToTarget(handleProcessEntity, ItemHandleProcessDTO.class)); |
|
|
|
pushToCityGridService.appealHandling(ConvertUtils.sourceToTarget(handleProcessEntity, ItemHandleProcessDTO.class)); |
|
|
|
log.info("处理项目-结案申请-if结束"); |
|
|
|
} else { |
|
|
|
handleProcessEntity.setState(dto.getHandleCategory()); |
|
|
@ -2837,7 +2837,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
ItemGridPlatformHandleStatusEnum.HANDLE_YQSQ.getValue() == dto.getState() || |
|
|
|
ItemGridPlatformHandleStatusEnum.HANDLE_SQBJ.getValue() == dto.getState() || |
|
|
|
ItemGridPlatformHandleStatusEnum.HANDLE_XSSQ.getValue() == dto.getState()) { |
|
|
|
pushToCityGridService.AppealReporting(dto.getId(), NumConstant.ONE_STR); |
|
|
|
pushToCityGridService.appealReporting(dto.getId(), NumConstant.ONE_STR); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -3580,12 +3580,12 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
throw new RenException("审批标识有误"); |
|
|
|
} |
|
|
|
itemHandleProcessDao.insert(process); |
|
|
|
//同意的时候,上报诉求处理
|
|
|
|
if (NumConstant.ZERO_STR.equals(formDto.getCheckFlag())) { |
|
|
|
// 社区审批,上报市平台
|
|
|
|
pushToCityGridService.AppealReporting(process.getId(), NumConstant.ZERO_STR); |
|
|
|
//pushToCityGridService.AppealHandling(ConvertUtils.sourceToTarget(process, ItemHandleProcessDTO.class));
|
|
|
|
} |
|
|
|
// // 结案申请,同意的时候,上报诉求处理
|
|
|
|
// if (NumConstant.ZERO_STR.equals(formDto.getCheckFlag())) {
|
|
|
|
// // 社区审批,上报市平台
|
|
|
|
//// pushToCityGridService.AppealReporting(process.getId(), NumConstant.ZERO_STR);
|
|
|
|
// //pushToCityGridService.AppealHandling(ConvertUtils.sourceToTarget(process, ItemHandleProcessDTO.class));
|
|
|
|
// }
|
|
|
|
|
|
|
|
if ("0".equals(formDto.getCheckFlag())) { |
|
|
|
//发送结案申请至街道网格化平台
|
|
|
@ -3778,7 +3778,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
if ("1".equals(formDto.getState())) { |
|
|
|
// 上报驳回,上报市平台
|
|
|
|
log.info("上报驳回,上报市平台" + itemHandleProcessDto.getId()); |
|
|
|
pushToCityGridService.ReportRejection(itemHandleProcessDto.getId()); |
|
|
|
pushToCityGridService.reportRejection(itemHandleProcessDto.getId()); |
|
|
|
} else if ("0".equals(formDto.getState())) { |
|
|
|
// 诉求审核,上报市平台
|
|
|
|
pushToCityGridService.appealAudit(itemHandleProcessDto.getId()); |
|
|
|