Browse Source

项目详情提交逻辑更改

feature/dangjian
wanggongfeng 3 years ago
parent
commit
dccadd757c
  1. 5
      esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/java/com/elink/esua/epdc/modules/item/service/impl/ItemServiceImpl.java

5
esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/java/com/elink/esua/epdc/modules/item/service/impl/ItemServiceImpl.java

@ -936,14 +936,15 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem
itemDeptService.modifyItemDepts(dto.getHandlerDeptId(), dto.getId()); itemDeptService.modifyItemDepts(dto.getHandlerDeptId(), dto.getId());
// 记录处理记录 // 记录处理记录
itemHandleProcessService.insert(handleProcessEntity); itemHandleProcessService.insert(handleProcessEntity);
if(OrganizationTypeConstant.ORG_TYPE_COMMUNITY_PARTY.equals(sysDeptDTO.getTypeKey())){
//上报到网格化平台 //上报到网格化平台
sendItemToDsf(dto,handleProcessEntity); sendItemToDsf(dto,handleProcessEntity);
}
// 新增流转协助部门 // 新增流转协助部门
itemDeptService.saveItemDepts(dto.getHandlerDeptId(), dto, handleProcessEntity.getId()); itemDeptService.saveItemDepts(dto.getHandlerDeptId(), dto, handleProcessEntity.getId());
List<Long> newDeptIds = new ArrayList<>(); List<Long> newDeptIds = new ArrayList<>();
// List<ItemCirculationDeptResultDTO> circulationDeptResultDTOS = dto.getDeptResultDTOS(); // List<ItemCirculationDeptResultDTO> circulationDeptResultDTOS = dto.getDeptResultDTOS();
// for (ItemCirculationDeptResultDTO circulationDto : // for (ItemCirculationDeptResultDTO circulationDto : circulationDeptResultDTOS) {
// circulationDeptResultDTOS) {
// newDeptIds.add(circulationDto.getDeptId()); // newDeptIds.add(circulationDto.getDeptId());
// } // }

Loading…
Cancel
Save