Zmiany pomiędzy wersją 19 and wersją 20 dla UserGuide/AdvancedConfiguration/DefiningReports/ReportParams

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

--

Legend:

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

    v19 v20  
    5050 7. [#typ_opcji Typ opcji] 
    5151 8. [#powiazania Jeden filtr wiele raportów] 
     52  
    5253 
    5354 
     
    235236== Przydatne kwerendy SQL do filtrów == 
    236237 
     238=== Filtr drzewka === 
     239 
     240==== MPK na fakturach ==== 
     241 
     242Filtr pozwala na znajdowanie faktur kosztowych ze względu na wybrane MPK 
     243 
     244{{{ 
     245keyval in (select doc_id from vatnote_costs where povcid in ({value})) 
     246 
     247select povcid as keyval, prn_id,  place_||' '||coalesce (dscrpt,'') name__, 'FOLDER' AS icon__ FROM places_of_vcosts where year__ =  
     248EXTRACT(year FROM current_date)  and is_del is false 
     249order by name__ 
     250}}} 
     251 
     252==== RK na fakturach ==== 
     253Filtr pozwala na znajdowanie faktur kosztowych ze względu na wybrane RK 
     254 
     255{{{ 
     256keyval in (select doc_id from vatnote_costs where tovcid in ({value})) 
     257 
     258select tovcid as keyval, prn_id,  type__||' '||coalesce (dscrpt,'') name__, 'FOLDER' AS icon__ FROM types_of_vcosts where year__ =  
     259EXTRACT(year FROM current_date)  and is_del is false 
     260order by name__ 
     261}}} 
     262 
     263 
     264=== Inne === 
    237265MAGAZYNY 
    238266{{{