raimund@642: [ raimund@642: { "id": "1", raimund@642: "name": "Kein Filter", raimund@642: "description": "Abfrage der Proben ohne Filter", raimund@642: "sql": "select p.id as id, pt.probe_id_alt as probeId, p.mst_id as mstId, p.umw_id as umwId from land.probe p join land.probe_translation pt on p.id = pt.probe_id", raimund@832: "type": "probe", raimund@642: "result": [ raimund@642: {"dataIndex": "probeId", "header": "ProbeId", "width": 100}, raimund@642: {"dataIndex": "mstId", "header": "MST", "width": 100}, raimund@642: {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100} raimund@642: ], raimund@642: "filters": [ raimund@642: ] raimund@642: }, raimund@642: { "id": "2", raimund@642: "name": "MST und UMW", raimund@642: "description": "Abfrage der Proben gefiltert nach Messtellen ID und ID des Umweltbereichs", raimund@642: "sql": "select p.id as id, pt.probe_id_alt as probeId, p.mst_id as mstId, p.umw_id as umwId from land.probe p join land.probe_translation pt on p.id = pt.probe_id where (p.mst_id = :mst_id OR '' = :mst_id) and (p.umw_id = :umw_id OR '' = :umw_id)", raimund@832: "type": "probe", raimund@642: "result": [ raimund@642: {"dataIndex": "probeId", "header": "ProbeId", "width": 100}, raimund@642: {"dataIndex": "mstId", "header": "MST", "width": 100}, raimund@642: {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100} raimund@642: ], raimund@642: "filters": [ raimund@642: {"dataIndex": "mst_id", "type": "listmst", "label": "Messstelle"}, raimund@642: {"dataIndex": "umw_id", "type": "listumw", "label": "Umweltbereich"} raimund@642: ] raimund@642: }, raimund@642: { "id": "3", raimund@642: "name": "Proben pro Land", raimund@642: "description": "Proben gefiltert nach Ländern", raimund@642: "sql": "select p.id as id, pt.probe_id_alt as probeId, p.netzbetreiber_id as netzbetreiberId, p.mst_id as mstId, p.umw_id as umwId, p.hauptproben_nr as hauptprobenNr from land.probe p join land.probe_translation pt on p.id = pt.probe_id where (netzbetreiber_id = :netz OR '' = :netz)", raimund@832: "type": "probe", raimund@642: "result": [ raimund@642: {"dataIndex": "probeId", "header": "ProbeId", "width": 100}, raimund@642: {"dataIndex": "netzbetreiberId", "header": "Land", "width": 100}, raimund@642: {"dataIndex": "mstId", "header": "MST", "width": 100}, raimund@642: {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100}, raimund@642: {"dataIndex": "hauptprobenNr", "header": "Proben-Nr", "width": 100} raimund@642: ], raimund@642: "filters": [ raimund@642: {"dataIndex": "netz", "type": "listnetz", "label": "Land"} raimund@642: ] raimund@642: }, raimund@642: { "id": "4", raimund@642: "name": "alle Proben mit Ort", raimund@642: "description": "alle Proben mit Entnahmeort", raimund@642: "sql": "select p.id as id, pt.probe_id_alt as probeId, p.netzbetreiber_id as netzbetreiberId, p.mst_id as mstId, p.umw_id as umwId, p.hauptproben_nr as hauptprobenNr, so.gem_id as gemId, v.bezeichnung as bezeichnung from land.probe p join land.probe_translation pt on p.id = pt.probe_id left outer join land.ort o on (p.id = o.probe_id) left outer join stammdaten.ort so on (o.ort_id = so.id) left outer join stammdaten.verwaltungseinheit v on (so.gem_id = v.id) where o.orts_typ = 'E' or o.orts_typ is null", raimund@832: "type": "probe", raimund@642: "result": [ raimund@642: {"dataIndex": "probeId", "header": "ProbeId", "width": 100}, raimund@642: {"dataIndex": "netzbetreiberId", "header": "Land", "width": 50}, raimund@642: {"dataIndex": "mstId", "header": "MST", "width": 60}, raimund@642: {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100}, raimund@642: {"dataIndex": "hauptprobenNr", "header": "Proben-Nr", "width": 100}, raimund@642: {"dataIndex": "gemId", "header": "Gem-ID", "width": 100}, raimund@642: {"dataIndex": "bezeichnung", "header": "Gemeinde", "flex": 1} raimund@642: ], raimund@642: "filters": [ raimund@642: ] raimund@642: }, raimund@642: { "id": "5", raimund@642: "name": "Proben pro Land und UMW (Multiselect)", raimund@642: "description": "Abfrage aller Proben gefiltert pro Land und Umweltbereich (mit Mehrfachauswahl)", raimund@642: "sql": "select p.id as id, pt.probe_id_alt as probeId, p.netzbetreiber_id as netzbetreiberId, p.mst_id as mstId, to_char(p.probeentnahme_beginn,'YYYY-mm-dd HH24:MI') entnahmeVon, to_char(p.probeentnahme_ende,'YYYY-mm-dd HH24:MI') entnahmeBis, p.umw_id as umwId, p.hauptproben_nr as hauptprobenNr, o.orts_typ as ortsTyp, so.gem_id as gemId, v.bezeichnung as bezeichnung from land.probe p join land.probe_translation pt on p.id = pt.probe_id left outer join land.ort o on (p.id = o.probe_id) left outer join stammdaten.ort so on (o.ort_id = so.id) left outer join stammdaten.verwaltungseinheit v on (so.gem_id = v.id) where (o.orts_typ = 'E' or o.orts_typ is null) and (p.netzbetreiber_id = :netz OR '' =:netz) and (p.umw_id similar to (:umw_id) OR '' = :umw_id)", raimund@832: "type": "probe", raimund@642: "result": [ raimund@642: {"dataIndex": "probeId", "header": "ProbeId", "width": 100}, raimund@642: {"dataIndex": "netzbetreiberId", "header": "Land", "width": 50}, raimund@642: {"dataIndex": "mstId", "header": "MST", "width": 50}, raimund@642: {"dataIndex": "entnahmeVon", "header": "Entnahme von", "width": 120}, raimund@642: {"dataIndex": "entnahmeBis", "header": "Entnahme bis", "width": 120}, raimund@642: {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100}, raimund@642: {"dataIndex": "hauptprobenNr", "header": "Proben-Nr", "width": 100}, raimund@642: {"dataIndex": "ortsTyp", "header": "Ortstyp", "width": 50}, raimund@642: {"dataIndex": "genId", "header": "Gemeinde-ID", "width": 100}, raimund@642: {"dataIndex": "bezeichnung", "header": "Gemeinde", "flex": 1} raimund@642: ], raimund@642: "filters": [ raimund@642: {"dataIndex": "netz", "type": "listnetz", "label": "Land"}, raimund@642: {"dataIndex": "umw_id", "type": "listumw", "label": "Umweltbereich", "multiselect":true} raimund@642: ] raimund@642: } raimund@642: ]