Skip to content

Commit

Permalink
GRAD2-2580
Browse files Browse the repository at this point in the history
(GRAD) Fix User Request Distribution Run options - Part 2 - CUR and Null Distribution Dates
  • Loading branch information
arybakov-cgi committed May 13, 2024
1 parent 37f5641 commit 4e956c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ public boolean updateStudentCredentialPosting(UUID studentID, String credentialT
public List<StudentCredentialDistribution> getStudentCredentialsForUserRequestDisRun(String credentialType, StudentSearchRequest studentSearchRequest, boolean onlyWithNullDistributionDate, String accessToken) {
List<StudentCredentialDistribution> scdList = new ArrayList<>();
if(StringUtils.isBlank(studentSearchRequest.getActivityCode())) {
studentSearchRequest.setActivityCode("USERDIST");
studentSearchRequest.setActivityCode("USERDIST" + StringUtils.upperCase(credentialType));
}
List<UUID> studentIDs = studentSearchRequest.getStudentIDs();
if(studentIDs == null || studentIDs.isEmpty()) {
Expand Down

0 comments on commit 4e956c7

Please sign in to comment.