|
|
|
@ -92,6 +92,7 @@ public class ProjectExtractServiceImpl implements ProjectExtractService { |
|
|
|
entity.setCreatedTime(DateUtils.stringToDate(pending.getDateId(), DateUtils.DATE_PATTERN_YYYYMMDD)); |
|
|
|
entity.setUpdatedTime(process.getUpdatedTime()); |
|
|
|
entity.setIsResolved(process.getIsResolved()); |
|
|
|
entity.setClosedStatus(entity.getIsResolved()); |
|
|
|
return entity; |
|
|
|
})).collect(Collectors.toList()); |
|
|
|
|
|
|
|
@ -139,6 +140,7 @@ public class ProjectExtractServiceImpl implements ProjectExtractService { |
|
|
|
entity.setIssueId(project.getOriginId()); |
|
|
|
entity.setProjectStatus(project.getStatus()); |
|
|
|
entity.setIsResolved(project.getClosedStatus()); |
|
|
|
entity.setClosedStatus(entity.getIsResolved()); |
|
|
|
entity.setCreatedTime(project.getCreatedTime()); |
|
|
|
entity.setUpdatedTime(project.getUpdatedTime()); |
|
|
|
entity.setPids(project.getOrgIdPath()); |
|
|
|
|