Skip to content

Commit

Permalink
Merge pull request #337 from bcgov/feature/GRAD2-2805
Browse files Browse the repository at this point in the history
GRAD2-2805: task is complete.
  • Loading branch information
githubmamatha authored Jul 4, 2024
2 parents 066e125 + 26986e2 commit d65ca6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ private void checkAndPopulateTraxStudentStatus(TraxStudentEntity traxStudentEnti
newArchiveFlag = "I";
} else if (StringUtils.equals(gradStudentStatus, "TER")) {
newStudStatus = "T";
newArchiveFlag = "I";
newArchiveFlag = "A";
}

if (!StringUtils.equalsIgnoreCase(studStatus, newStudStatus)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public static TraxStudentEntity createTraxStudent(String program, String student
traxStudent.setArchiveFlag("I");
} else if (StringUtils.equals(studentStatus, "TER")) {
traxStudent.setStudStatus("T");
traxStudent.setArchiveFlag("I");
traxStudent.setArchiveFlag("A");
}
return traxStudent;
}
Expand Down

0 comments on commit d65ca6c

Please sign in to comment.