Skip to content

Commit

Permalink
Merge pull request #611 from DFE-Digital/bugfix/trust-ukprn-not-popul…
Browse files Browse the repository at this point in the history
…ated

revert back to false for is form a mat flag - records with null isf…
  • Loading branch information
paullocknimble authored Nov 25, 2024
2 parents 9dcadae + 20623cc commit 60358d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private static IQueryable<Project> FilterGroupedProjects(IQueryable<Project> que
string.IsNullOrEmpty(p.Details.SchoolPhase) ||
string.IsNullOrEmpty(p.Details.SchoolType) ||
// we need projects that have a trust associated that aren't form a mat that require a trust ukprn
(p.Details.TrustUkprn == null && p.Details.IsFormAMat == null && p.Details.TrustReferenceNumber != null)
(p.Details.TrustUkprn == null && p.Details.IsFormAMat == false && p.Details.TrustReferenceNumber != null)
&& p.DeletedAt == null)
.ToListAsync();

Expand Down

0 comments on commit 60358d4

Please sign in to comment.