Skip to content

Commit

Permalink
GRAD2-2817
Browse files Browse the repository at this point in the history
TVR Delete Process - Backend Changes Endpoints
  • Loading branch information
arybakov-cgi committed Aug 28, 2024
1 parent a897e8b commit 0e6e3be
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -922,9 +922,6 @@ public List<UUID> getReportStudentIDsByStudentIDsAndReportType(List<String> fina

public Integer archiveSchoolReports(Long batchId, List<String> finalSchoolDistricts, String reportType, DistributionSummaryDTO summaryDTO) {
UUID correlationID = UUID.randomUUID();
if(LOGGER.isDebugEnabled()) {
LOGGER.debug("Archive {} School Reports for Ministry Codes: {}", reportType, !finalSchoolDistricts.isEmpty() ? String.join(",", finalSchoolDistricts) : summaryDTO.getSchools().stream().map(School::getMincode).collect(Collectors.joining(",")));
}
try {
String accessToken = getAccessToken();
return this.webClient.post()
Expand Down Expand Up @@ -965,9 +962,6 @@ public Long getTotalStudentsBySchoolOfRecordAndStudentStatus(List<String> finalS

public Integer archiveStudents(Long batchId, List<String> finalSchoolDistricts, String studentStatus, DistributionSummaryDTO summaryDTO) {
UUID correlationID = UUID.randomUUID();
if(LOGGER.isDebugEnabled()) {
LOGGER.debug("Archive {} Students for Ministry Codes: {}", studentStatus, String.join(",", finalSchoolDistricts));
}
try {
String accessToken = getAccessToken();
String userName = StringUtils.defaultString(summaryDTO.getUserName(), "Batch Archive Process");
Expand All @@ -987,9 +981,6 @@ public Integer archiveStudents(Long batchId, List<String> finalSchoolDistricts,

public List<UUID> getStudentIDsBySearchCriteriaOrAll(StudentSearchRequest searchRequest, DistributionSummaryDTO summaryDTO) {
UUID correlationID = UUID.randomUUID();
if(LOGGER.isDebugEnabled()) {
LOGGER.debug("Get Students for Ministry Codes: {}", String.join(",", searchRequest.getSchoolOfRecords()));
}
try {
String accessToken = getAccessToken();
final ParameterizedTypeReference<List<UUID>> responseType = new ParameterizedTypeReference<>() {
Expand Down

0 comments on commit 0e6e3be

Please sign in to comment.