Skip to content

Commit

Permalink
Merge pull request #743 from bcgov/feature/GRAD2-3220
Browse files Browse the repository at this point in the history
 GRAD2-3220: Bug fix on null school id in the payload of ongoing update events from GRAD to TRAX.
  • Loading branch information
infstar authored Jan 24, 2025
2 parents 802451e + e6612c2 commit 1871c65
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@ public static GradStatusEventPayloadDTO transform(GraduationStudentRecordEntity
.program(graduationStudentRecord.getProgram())
.programCompletionDate(graduationStudentRecord.getProgramCompletionDate() != null?
EducGradStudentApiUtils.getProgramCompletionDate(graduationStudentRecord.getProgramCompletionDate()) : null)
.schoolOfRecordId(graduationStudentRecord.getSchoolOfRecordId())
.schoolAtGradId(graduationStudentRecord.getSchoolAtGradId())
.studentGrade(graduationStudentRecord.getStudentGrade())
.studentStatus(graduationStudentRecord.getStudentStatus())
.honoursStanding(graduationStudentRecord.getHonoursStanding())
Expand Down

0 comments on commit 1871c65

Please sign in to comment.