Skip to content

Commit

Permalink
fix: exclude listings where P&S value is blank
Browse files Browse the repository at this point in the history
OCD-2037
  • Loading branch information
tmy1313 committed Jan 8, 2025
1 parent 198298b commit 1b24ae4
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public List<PrivacyAndSecurityFrameworkReport> getPrivacyAndSecurityFrameworkRep
+ "AND cr.certifiedProductId = cpd.id "
+ "AND cpd.certificationStatusId IN (1,6,7) "
+ "AND (cc.endDay is null OR cc.endDay > CURRENT_DATE()) "
+ "AND cr.privacySecurityFramework != '' "
+ "AND cc.deleted = false "
+ "AND cr.deleted = false "
+ "AND cpd.deleted = false "
Expand All @@ -45,6 +46,7 @@ public List<PrivacyAndSecurityFrameworkListingReport> getPrivacyAndSecurityFrame
+ "WHERE cc.id = cr.certificationCriterionId "
+ "AND cr.certifiedProductId = cpd.id "
+ "AND cpd.certificationStatusId IN (1,6,7) "
+ "AND cr.privacySecurityFramework != '' "
+ "AND cc.deleted = false "
+ "AND cr.deleted = false "
+ "AND cpd.deleted = false ";
Expand Down

0 comments on commit 1b24ae4

Please sign in to comment.