Skip to content

Commit

Permalink
EP-4476
Browse files Browse the repository at this point in the history
  • Loading branch information
oplekal committed Nov 15, 2024
1 parent 0f0538f commit 9f65f5a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ Page<String> findAllJulkisetJulkaisut(
" )" +
" )" +
" AND sisaltotyyppi = 'peruste' " +
" AND tyyppi IN ('normaali', 'opas', 'digitaalinen_osaaminen') " +
") t"
)
List<String> findAllJulkaistutPerusteetByKoodi(
Expand Down Expand Up @@ -135,6 +136,7 @@ List<String> findAllJulkaistutPerusteetByKoodi(
" )" +
" )" +
" AND sisaltotyyppi = 'peruste' " +
" AND tyyppi IN ('normaali', 'opas', 'digitaalinen_osaaminen')" +
") t"
)
List<String> findAllJulkaistutPerusteetByVoimassaolo(
Expand All @@ -154,6 +156,8 @@ List<String> findAllJulkaistutPerusteetByVoimassaolo(
"AND ((data.\"voimassaoloLoppuu\" IS NULL OR CAST(data.\"voimassaoloLoppuu\" as bigint) > :nykyhetki) " +
" OR (data.\"siirtymaPaattyy\" IS NOT NULL AND CAST(data.\"siirtymaPaattyy\" as bigint) > :nykyhetki)) " +
"AND LOWER(CAST(kielet as text)) LIKE LOWER(CONCAT('%', :kieli,'%')) " +
"AND tyyppi IN ('normaali', 'opas', 'digitaalinen_osaaminen') " +
"AND sisaltotyyppi = 'peruste' " +
"GROUP BY data.koulutustyyppi")
List<KoulutustyyppiLukumaara> findJulkaistutKoulutustyyppiLukumaaratByKieli(
@Param("kieli") String kieli,
Expand Down

0 comments on commit 9f65f5a

Please sign in to comment.