Skip to content

Commit d3a6ec1

Browse files
authored
Merge pull request #3313 from TechnologyEnhancedLearning/Develop/Fix/TD-5551-multiple-confirmation-links
TD-5551-Sql query modified - Requested date removed from the group by
2 parents fe3cceb + 5547046 commit d3a6ec1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DigitalLearningSolutions.Data/DataServices/SupervisorDataService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ FROM SelfAssessmentResults AS sar2
696696
AdminAccounts AS aa ON sd.SupervisorAdminID = aa.ID
697697
WHERE (sd.SupervisorAdminID = @adminId) AND (cas.Removed IS NULL) AND (sasv.Verified IS NULL) AND (sd.Removed IS NULL)
698698
AND (aa.CategoryID is null or sa.CategoryID = aa.CategoryID)
699-
GROUP BY sa.ID, ca.ID, sd.ID, u.FirstName, u.LastName, sa.Name,cast(sasv.Requested as date)", new { adminId }
699+
GROUP BY sa.ID, ca.ID, sd.ID, u.FirstName, u.LastName, sa.Name", new { adminId }
700700
);
701701
}
702702

0 commit comments

Comments
 (0)