|
|
@ -128,7 +128,7 @@ public class IssueExtractServiceImpl implements IssueExtractService { |
|
|
|
agencyInfoList.forEach(pid -> { |
|
|
|
if (r.getAgencyId().equals(pid.getAgencyId())){ |
|
|
|
r.setPid(pid.getPid()); |
|
|
|
r.setPids(pid.getPids().concat(":").concat(pid.getPid())); |
|
|
|
r.setPids(pid.getPids().concat(":").concat(r.getAgencyId())); |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
@ -227,7 +227,7 @@ public class IssueExtractServiceImpl implements IssueExtractService { |
|
|
|
agencyInfoList.forEach(agency -> { |
|
|
|
if (r.getAgencyId().equals(agency.getAgencyId())){ |
|
|
|
r.setPid(agency.getPid()); |
|
|
|
r.setPids(agency.getPids()); |
|
|
|
r.setPids(agency.getPids().concat(":").concat(r.getAgencyId())); |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|