|
|
|
@ -4414,6 +4414,16 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem |
|
|
|
processEntity.setState(ItemGridPlatformHandleStatusEnum.HANDLE_CYSQ.getValue()); |
|
|
|
processEntity.setHandleAdvice("诉求已上报市平台初验申请"); |
|
|
|
processEntity.setOutHandleAdvice("初验申请"); |
|
|
|
long id = 0; |
|
|
|
String name = "街道"; |
|
|
|
if (StringUtils.isNotBlank(entity.getAllDeptIds()) && StringUtils.isNotBlank(entity.getAllDeptNames())) { |
|
|
|
String[] idList = entity.getAllDeptIds().split("-"); |
|
|
|
String[] nameList = entity.getAllDeptNames().split("-"); |
|
|
|
id = idList.length > 1 ? Long.parseLong(idList[1]) : 0; |
|
|
|
name = nameList.length > 1 ? nameList[1] : "街道"; |
|
|
|
} |
|
|
|
processEntity.setHandlerDeptId(id); |
|
|
|
processEntity.setHandlerDept(name); |
|
|
|
itemHandleProcessService.insert(processEntity); |
|
|
|
//初验申请
|
|
|
|
ItemHandleProcessDTO dto = new ItemHandleProcessDTO(); |
|
|
|
|