Skip to content

Commit

Permalink
GRAD2-2805: task is complete.
Browse files Browse the repository at this point in the history
GRAD2-2805: task is complete.
  • Loading branch information
infstar committed Jul 4, 2024
1 parent 02b8b32 commit 26986e2
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 26986e2

Please sign in to comment.