Skip to content

Commit

Permalink
GRAD2-2255: bug fix on updating transcript distribution date. (#416)
Browse files Browse the repository at this point in the history
* GRAD2-2240: task is completed.

GRAD2-2240: task is completed.

* GRAD2-2253: task is complete

GRAD2-2253: task is complete

* GRAD2-2255: task is completed.

GRAD2-2255: task is completed.

* GRAD2-2255: bug fix on updating transcript distribution date.

GRAD2-2255: bug fix on updating transcript distribution date.

* GRAD2-2255: bug fix on updating transcript distribution date.

GRAD2-2255: bug fix on updating transcript distribution date.
  • Loading branch information
infstar authored Aug 1, 2023
1 parent a599741 commit d6908df
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ private Map<String, ServiceException> updateBackStudentRecords(List<StudentCrede
cList.forEach(scd-> {
try {
final String token = restUtils.getAccessToken();
restUtils.updateStudentCredentialRecord(scd.getStudentID(),scd.getCredentialTypeCode(),scd.getPaperType(),scd.getDocumentStatusCode(),activityCode,token);
restUtils.updateStudentCredentialRecord(scd.getStudentID(),scd.getCredentialTypeCode(),scd.getPaperType(),
"NONGRADYERUN".equalsIgnoreCase(activityCode)? "IP" : scd.getDocumentStatusCode(),activityCode,token);
restUtils.updateStudentGradRecord(scd.getStudentID(),batchId,activityCode,token);
processedCount[0]++;
LOGGER.debug("Dist Job [{}] / [{}] - update {} of {} student credential record & student grad record: studentID, credentials, document status [{}, {}, {}]", batchId, activityCode, processedCount[0], totalCount, scd.getStudentID(), scd.getCredentialTypeCode(), scd.getDocumentStatusCode());
Expand Down

0 comments on commit d6908df

Please sign in to comment.