Zmiany pomiędzy wersją 23 and wersją 24 dla UserGuide/AdvancedConfiguration/DefiningReports/ReportParams

Pokaż
Ignoruj:
Data i czas:
06/19/16 11:44:02 (8 years temu)
Autor:
pwiacek (IP: 95.160.157.238)
Komentarz:

--

Legend:

Bez zmian
Dodane
Usunięte
Zmienione
  • UserGuide/AdvancedConfiguration/DefiningReports/ReportParams

    v23 v24  
    5050 7. [#typ_opcji Typ opcji] 
    5151 8. [#powiazania Jeden filtr wiele raportów] 
    52  9. [#dynamiczne Dynamiczne powiązanie] 
     52 9. [#dynamiczne Dynamiczne grupowanie] 
    5353 10. [#filtrysql Przydatne kwerendy SQL do filtrów] 
    5454  a) [#miesiecy Drzewko miesięcy] 
     
    261261}}} 
    262262 
     263==== Filtr okresu urlopu ==== 
     264 
     265{{{ 
     266pocz_urlop in (select s FROM generate_series('2008-03-01 00:00'::timestamp,'2050-03-04 00:00', '1 day') as S where s {value}) 
     267or 
     268kon_urlop in (select s FROM generate_series('2008-03-01 00:00'::timestamp,'2050-03-04 00:00', '1 day') as S where s {value}) 
     269or 
     270(pocz_urlop < (select min(s) FROM generate_series('2008-03-01 00:00'::timestamp,'2050-03-04 00:00', '1 day') as S where s {value}) 
     271and 
     272kon_urlop > (select max(s) FROM generate_series('2008-03-01 00:00'::timestamp,'2050-03-04 00:00', '1 day') as S where s {value})) 
     273 
     274select coalesce( 
     275(select min(CAST(f1.data__ AS date)  -interval '1 day') ::date 
     276FROM documents doc 
     277LEFT JOIN features_text_view f1 ON doc.doc_id = f1.tbl_id AND f1.featid = 4 /*data od*/ 
     278where dctpid = 24 AND gostof IS NULL and  copyof is null AND  doc.is_del IS FALSE and f1.data__ is not null), current_date::date-interval '1 day') 
     279union 
     280select coalesce( 
     281(select max(CAST(f1.data__ AS date))::date 
     282FROM documents doc 
     283LEFT JOIN features_text_view f1 ON doc.doc_id = f1.tbl_id AND f1.featid = 4 /*data od*/ 
     284where dctpid = 24 AND gostof IS NULL and  copyof is null AND  doc.is_del IS FALSE and f1.data__ is not null),current_date::date) 
     285}}} 
     286 
     287 
     288 
    263289=== Filtr drzewka === #drzewka 
    264290