|
|
|
@ -228,7 +228,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
public PageData<ItemPendingHandleDTO> listOfItemsForPCEnd(Map<String, Object> params) { |
|
|
|
UserDetail user = SecurityUser.getUser(); |
|
|
|
if (null == user) { |
|
|
|
throw new RuntimeException("获取用户信息失败"); |
|
|
|
throw new RenException("获取用户信息失败"); |
|
|
|
} |
|
|
|
if (OrganizationTypeConstant.ORG_TYPE_DISTRICT_DEPT.equals(user.getTypeKey())) { |
|
|
|
if (params.get("streetId") != null && !"".equals(params.get("streetId"))) { |
|
|
|
@ -273,7 +273,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
public List<ItemPendingHandleDTO> listEqPc(ItemWorkListFormDTO formDTO) { |
|
|
|
UserDetail user = SecurityUser.getUser(); |
|
|
|
if (null == user) { |
|
|
|
throw new RuntimeException("获取用户信息失败"); |
|
|
|
throw new RenException("获取用户信息失败"); |
|
|
|
} |
|
|
|
if (OrganizationTypeConstant.ORG_TYPE_DISTRICT_DEPT.equals(user.getTypeKey())) { |
|
|
|
if (formDTO.getStreetId() != null && !"".equals(formDTO.getStreetId())) { |
|
|
|
@ -318,7 +318,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
public PageData<ItemPendingHandleDTO> listOfItemsForPCReject(Map<String, Object> params) { |
|
|
|
UserDetail user = SecurityUser.getUser(); |
|
|
|
if (null == user) { |
|
|
|
throw new RuntimeException("获取用户信息失败"); |
|
|
|
throw new RenException("获取用户信息失败"); |
|
|
|
} |
|
|
|
if (OrganizationTypeConstant.ORG_TYPE_DISTRICT_DEPT.equals(user.getTypeKey())) { |
|
|
|
if (params.get("streetId") != null && !"".equals(params.get("streetId"))) { |
|
|
|
@ -358,7 +358,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
public List<ItemPendingHandleDTO> rejectListEqPc(ItemWorkListFormDTO formDTO) { |
|
|
|
UserDetail user = SecurityUser.getUser(); |
|
|
|
if (null == user) { |
|
|
|
throw new RuntimeException("获取用户信息失败"); |
|
|
|
throw new RenException("获取用户信息失败"); |
|
|
|
} |
|
|
|
if (OrganizationTypeConstant.ORG_TYPE_DISTRICT_DEPT.equals(user.getTypeKey())) { |
|
|
|
if (formDTO.getStreetId() != null && !"".equals(formDTO.getStreetId())) { |
|
|
|
@ -488,11 +488,11 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
public Result submitLawItem(ItemLawSubmitDTO formDto) { |
|
|
|
UserDetail userDetail = SecurityUser.getUser(); |
|
|
|
if (null == userDetail) { |
|
|
|
throw new RuntimeException("获取用户信息失败"); |
|
|
|
throw new RenException("获取用户信息失败"); |
|
|
|
} |
|
|
|
if (!(StringUtils.isNotBlank(userDetail.getTypeKey()) |
|
|
|
&& OrganizationTypeConstant.ORG_TYPE_STREET_PARTY.equals(userDetail.getTypeKey()))) { |
|
|
|
throw new RuntimeException("请用街道账号进行上报"); |
|
|
|
throw new RenException("请用街道账号进行上报"); |
|
|
|
} |
|
|
|
ItemEntity itemEntity = new ItemEntity(); |
|
|
|
/** |
|
|
|
@ -508,6 +508,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
itemEntity.setDistributeTime(new Date()); |
|
|
|
itemEntity.setGrid("执法诉求" + userDetail.getDeptName()); |
|
|
|
itemEntity.setGridId(userDetail.getDeptId()); |
|
|
|
|
|
|
|
itemEntity.setItemContent(formDto.getLawContent()); |
|
|
|
itemEntity.setItemVoice(formDto.getItemVoice()); |
|
|
|
itemEntity.setDuration(formDto.getDuration()); |
|
|
|
@ -528,8 +529,18 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
if (!dtoResult.success()) { |
|
|
|
throw new RenException(dtoResult.getMsg()); |
|
|
|
} |
|
|
|
|
|
|
|
// 因为是街道账号,所以上级一定是市北区委
|
|
|
|
Long pids = dtoResult.getData().getPid(); |
|
|
|
String pnames = dtoResult.getData().getParentName(); |
|
|
|
itemEntity.setParentDeptIds(pids + ""); |
|
|
|
itemEntity.setParentDeptNames(pnames); |
|
|
|
itemEntity.setAllDeptIds(pids + "," + userDetail.getDeptId()); |
|
|
|
itemEntity.setAllDeptNames(pnames + "-" + userDetail.getDeptName()); |
|
|
|
|
|
|
|
// 流水号
|
|
|
|
itemEntity.setSerialNum(getSerialNum("ZF" + dtoResult.getData().getDisCenterZoningCode())); |
|
|
|
String code = dtoResult.getData().getDisCenterZoningCode(); |
|
|
|
itemEntity.setSerialNum(getSerialNum("ZF" + code)); |
|
|
|
baseDao.insert(itemEntity); |
|
|
|
//插入项目部门关联表
|
|
|
|
itemDeptService.savePeopleSubmitInfo(itemEntity); |
|
|
|
@ -1272,12 +1283,12 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
public List<ItemHandleProgressResultDTO> listOfItemHandleProgressByMobile(String itemId) { |
|
|
|
List<ItemHandleProgressResultDTO> list = baseDao.selectListOfItemHandleProgressByMobile(itemId); |
|
|
|
// 处理多次拼接处理人信息问题
|
|
|
|
for(ItemHandleProgressResultDTO dto : list){ |
|
|
|
for (ItemHandleProgressResultDTO dto : list) { |
|
|
|
String advice = dto.getAdvice(); |
|
|
|
// 对包含【h_s】的数据进行重新组装
|
|
|
|
if(advice.contains("h_s")){ |
|
|
|
String hsStr = advice.substring(advice.indexOf("h_s"),advice.length()); |
|
|
|
String adviceOld = advice.substring(0,advice.indexOf(" 办理人:")); |
|
|
|
if (advice.contains("h_s") && advice.contains(" 办理人:")) { |
|
|
|
String hsStr = advice.substring(advice.indexOf("h_s"), advice.length()); |
|
|
|
String adviceOld = advice.substring(0, advice.indexOf(" 办理人:")); |
|
|
|
String adviceNew = adviceOld + hsStr; |
|
|
|
dto.setAdvice(adviceNew); |
|
|
|
} |
|
|
|
@ -1378,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()) { |
|
|
|
@ -1390,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()) { |
|
|
|
@ -1451,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()); |
|
|
|
@ -1904,7 +1915,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
ItemWorkListFormDTO formDTO = new ItemWorkListFormDTO(); |
|
|
|
UserDetail user = SecurityUser.getUser(); |
|
|
|
if (null == user) { |
|
|
|
throw new RuntimeException("获取用户信息失败"); |
|
|
|
throw new RenException("获取用户信息失败"); |
|
|
|
} |
|
|
|
if (OrganizationTypeConstant.ORG_TYPE_DISTRICT_DEPT.equals(user.getTypeKey())) { |
|
|
|
if (formDTO.getStreetId() != null && !"".equals(formDTO.getStreetId())) { |
|
|
|
@ -2136,7 +2147,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
*/ |
|
|
|
private SendEventFormDto packageSendEventEntity(ItemEntity itemEntity, ItemHandleSubmitFormDTO dto) throws Exception { |
|
|
|
SendEventFormDto sendDto = new SendEventFormDto(); |
|
|
|
SendInputInfoFormDto formDto = new SendInputInfoFormDto(); |
|
|
|
|
|
|
|
//推送类别(事件上报)
|
|
|
|
sendDto.setSENDTYPE(CommonConstants.SEND_TYPE); |
|
|
|
//上报
|
|
|
|
@ -2158,7 +2169,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
//事件来源
|
|
|
|
sendDto.setSJLY(CommonConstants.PARTY_EVENT_SOURCE_ZF); |
|
|
|
//备注
|
|
|
|
sendDto.setBZXX(getItemLawNote(itemEntity.getId())); |
|
|
|
sendDto.setBZXX(getItemLawNote(itemEntity.getId(), itemEntity.getSerialNum())); |
|
|
|
} |
|
|
|
//执法诉求和发展诉求gridId存的是街道id,需要单独查
|
|
|
|
Result<SysDeptDTO> streetResult = adminFeignClient.getSysDeptInfo(itemEntity.getGridId()); |
|
|
|
@ -2184,9 +2195,9 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
} |
|
|
|
//备注
|
|
|
|
log.info("上报网格化平台dto:" + dto); |
|
|
|
sendDto.setBZXX(dto.getHandleAdvice()); |
|
|
|
sendDto.setBZXX(dto.getHandleAdvice()+" 诉求编码:" + itemEntity.getSerialNum()); |
|
|
|
if (StringUtils.isNotBlank(dto.getHandleAdviceRemark())) { |
|
|
|
sendDto.setBZXX(sendDto.getBZXX() + "\n不予受理详细说明:" + dto.getHandleAdviceRemark()); |
|
|
|
sendDto.setBZXX(sendDto.getBZXX() + "\n不予受理详细说明:" + dto.getHandleAdviceRemark() + "\n诉求编码:" + itemEntity.getSerialNum()); |
|
|
|
} |
|
|
|
Result<DeptInfoCodeDTO> deptResult = adminFeignClient.getDeptInfoCode(itemEntity.getGridId()); |
|
|
|
|
|
|
|
@ -2298,7 +2309,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
} |
|
|
|
//查询所对应的大类
|
|
|
|
CategoryEntity thirdCate = categoryDao.selectById(thirdId); |
|
|
|
if (null == thirdCate) { |
|
|
|
if (null == thirdCate || StringUtils.isBlank(thirdCate.getEventCategoryCode())) { |
|
|
|
sendDto.setSJLYU("21"); |
|
|
|
sendDto.setSJDL("2199"); |
|
|
|
return; |
|
|
|
@ -2337,13 +2348,14 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
private String getItemLawNote(String itemId) { |
|
|
|
private String getItemLawNote(String itemId, String serialNum) { |
|
|
|
QueryWrapper<ItemLawEntity> wrapper = new QueryWrapper<>(); |
|
|
|
wrapper.eq("item_id", itemId); |
|
|
|
wrapper.eq("del_flag", "0"); |
|
|
|
ItemLawEntity itemLaw = itemLawDao.selectOne(wrapper); |
|
|
|
String result = "主办单位:" + itemLaw.getHostUnit() + "\n\n" |
|
|
|
+ "协办单位:" + itemLaw.getAssistUnit(); |
|
|
|
+ "协办单位:" + itemLaw.getAssistUnit() + "\n\n" |
|
|
|
+ "诉求编码:" + serialNum; |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
@ -2825,7 +2837,12 @@ 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);
|
|
|
|
} |
|
|
|
// 网格化平台,处置完成
|
|
|
|
if (ItemGridPlatformHandleStatusEnum.HANDLE_CL.getValue() == dto.getState()) { |
|
|
|
pushToCityGridService.appealHandling(dto); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@ -3138,9 +3155,17 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
} else if (NumConstant.ONE_STR.equals(formDto.getPeopleFlag())) { |
|
|
|
//执法诉求所属街道的市中心编码
|
|
|
|
Result<SysDeptDTO> dtoResult = adminFeignClient.getSysDeptInfo(entity.getGridId()); |
|
|
|
if (!dtoResult.success()) { |
|
|
|
if (dtoResult.success()) { |
|
|
|
code = dtoResult.getData().getDisCenterZoningCode(); |
|
|
|
// 因为是街道账号,所以上级一定是市北区委
|
|
|
|
Long pids = dtoResult.getData().getPid(); |
|
|
|
String pnames = dtoResult.getData().getParentName(); |
|
|
|
entity.setParentDeptIds(pids + ""); |
|
|
|
entity.setParentDeptNames(pnames); |
|
|
|
entity.setAllDeptIds(pids + "," + entity.getGridId()); |
|
|
|
entity.setAllDeptNames(pnames + "-" + entity.getGrid()); |
|
|
|
} |
|
|
|
|
|
|
|
entity.setSerialNum(getSerialNum("FZ" + code)); |
|
|
|
} |
|
|
|
baseDao.insert(entity); |
|
|
|
@ -3348,7 +3373,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
public List<ItemPendingHandleDTO> unExportList(Map<String, Object> params) { |
|
|
|
UserDetail user = SecurityUser.getUser(); |
|
|
|
if (null == user) { |
|
|
|
throw new RuntimeException("获取用户信息失败"); |
|
|
|
throw new RenException("获取用户信息失败"); |
|
|
|
} |
|
|
|
if (OrganizationTypeConstant.ORG_TYPE_DISTRICT_DEPT.equals(user.getTypeKey())) { |
|
|
|
if (params.get("streetId") != null && !"".equals(params.get("streetId"))) { |
|
|
|
@ -3388,7 +3413,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
public List<ItemPendingHandleDTO> rejectUnexport(Map<String, Object> params) { |
|
|
|
UserDetail user = SecurityUser.getUser(); |
|
|
|
if (null == user) { |
|
|
|
throw new RuntimeException("获取用户信息失败"); |
|
|
|
throw new RenException("获取用户信息失败"); |
|
|
|
} |
|
|
|
if (OrganizationTypeConstant.ORG_TYPE_DISTRICT_DEPT.equals(user.getTypeKey())) { |
|
|
|
if (params.get("streetId") != null && !"".equals(params.get("streetId"))) { |
|
|
|
@ -3464,6 +3489,23 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public PageData<ItemAppealPageResultDTO> getItemAppealPageUnsatisfactory(@RequestParam Map<String, Object> params) { |
|
|
|
UserDetail user = SecurityUser.getUser(); |
|
|
|
//部门ID列表
|
|
|
|
List<Long> deptIdList = user.getDeptIdList(); |
|
|
|
params.put("deptIdList", null); |
|
|
|
if (null != deptIdList && deptIdList.size() > 0) { |
|
|
|
params.put("deptIdList", deptIdList); |
|
|
|
} |
|
|
|
IPage<ItemAppealPageResultDTO> page = getPage(params); |
|
|
|
List<ItemAppealPageResultDTO> list = baseDao.getItemAppealPageUnsatisfactory(params); |
|
|
|
Map<String, Long> map = listItemHandleDept(); |
|
|
|
list.forEach(item -> item.setItemHandleDeptId(map.get(item.getId()))); |
|
|
|
return new PageData<>(list, page.getTotal()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Result<ItemAppealDetailResultDTO> getItemAppealDetail(String id) { |
|
|
|
ItemAppealDetailResultDTO result = baseDao.getItemAppealDetail(id); |
|
|
|
@ -3496,7 +3538,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
public PageData<ItemExaminePageResultDTO> getExaminePage(Map<String, Object> params) { |
|
|
|
UserDetail user = SecurityUser.getUser(); |
|
|
|
if (null == user) { |
|
|
|
throw new RuntimeException("获取用户信息失败"); |
|
|
|
throw new RenException("获取用户信息失败"); |
|
|
|
} |
|
|
|
params.put("deptId", user.getDeptId()); |
|
|
|
IPage<ItemExaminePageResultDTO> page = getPage(params); |
|
|
|
@ -3511,7 +3553,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
|
|
|
|
UserDetail user = SecurityUser.getUser(); |
|
|
|
if (null == user) { |
|
|
|
throw new RuntimeException("获取用户信息失败"); |
|
|
|
throw new RenException("获取用户信息失败"); |
|
|
|
} |
|
|
|
formDTO.setDeptId(user.getDeptId()); |
|
|
|
List<ItemExaminePageResultDTO> list = baseDao.getExaminePageEqPc(formDTO); |
|
|
|
@ -3523,7 +3565,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
public Result examineCase(ExamineCaseFormDTO formDto) { |
|
|
|
UserDetail user = SecurityUser.getUser(); |
|
|
|
if (null == user) { |
|
|
|
throw new RuntimeException("获取用户信息失败"); |
|
|
|
throw new RenException("获取用户信息失败"); |
|
|
|
} |
|
|
|
|
|
|
|
ItemHandleProcessEntity process = new ItemHandleProcessEntity(); |
|
|
|
@ -3543,12 +3585,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())) { |
|
|
|
//发送结案申请至街道网格化平台
|
|
|
|
@ -3636,7 +3678,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
public String getSerialNum(String prefix) { |
|
|
|
String serialNum = prefix; |
|
|
|
String dateStr = DateUtils.format(new Date(), DateUtils.DATE_TIME); |
|
|
|
serialNum = serialNum + dateStr + "-"; |
|
|
|
serialNum = serialNum + "-" + dateStr + "-"; |
|
|
|
|
|
|
|
String key = RedisKeys.getSerialNumKey(serialNum); |
|
|
|
String numStr; |
|
|
|
@ -3717,6 +3759,8 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
itemHandleProcessDto.setGridPartyname("结案"); |
|
|
|
itemHandleProcessDto.setGridTaskcnname("区中心"); |
|
|
|
item.setItemState(ItemHandleCategoryEnum.HANDLE_CLOSING_CASE.getValue()); |
|
|
|
// 可以进行评价了
|
|
|
|
item.setEvaluationState(NumConstant.ONE_STR); |
|
|
|
updateById(item); |
|
|
|
} else if ("1".equals(formDto.getState())) { |
|
|
|
itemHandleProcessDto.setState(ItemGridPlatformHandleStatusEnum.HANDLE_BH.getValue()); |
|
|
|
@ -3739,7 +3783,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()); |
|
|
|
|