Mercurial > lada > lada-server
comparison src/main/resources/probequery.json @ 636:cdcb7a141529
Added new query config for messprogramme and serve it via QueryService.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Mon, 27 Apr 2015 18:50:42 +0200 |
parents | |
children | 76f08c40a13a |
comparison
equal
deleted
inserted
replaced
635:93076cf1af97 | 636:cdcb7a141529 |
---|---|
1 [ | |
2 { "id": "1", | |
3 "name": "Kein Filter", | |
4 "description": "Abfrage der Proben ohne Filter", | |
5 "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", | |
6 "result": [ | |
7 {"dataIndex": "probeId", "header": "ProbeId", "width": 100}, | |
8 {"dataIndex": "mstId", "header": "MST", "width": 100}, | |
9 {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100} | |
10 ], | |
11 "filters": [ | |
12 ] | |
13 }, | |
14 { "id": "2", | |
15 "name": "MST und UMW", | |
16 "description": "Abfrage der Proben gefiltert nach Messtellen ID und ID des Umweltbereichs", | |
17 "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)", | |
18 "result": [ | |
19 {"dataIndex": "probeId", "header": "ProbeId", "width": 100}, | |
20 {"dataIndex": "mstId", "header": "MST", "width": 100}, | |
21 {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100} | |
22 ], | |
23 "filters": [ | |
24 {"dataIndex": "mst_id", "type": "listmst", "label": "Messstelle"}, | |
25 {"dataIndex": "umw_id", "type": "listumw", "label": "Umweltbereich"} | |
26 ] | |
27 }, | |
28 { "id": "3", | |
29 "name": "Proben pro Land", | |
30 "description": "Proben gefiltert nach Ländern", | |
31 "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)", | |
32 "result": [ | |
33 {"dataIndex": "probeId", "header": "ProbeId", "width": 100}, | |
34 {"dataIndex": "netzbetreiberId", "header": "Land", "width": 100}, | |
35 {"dataIndex": "mstId", "header": "MST", "width": 100}, | |
36 {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100}, | |
37 {"dataIndex": "hauptprobenNr", "header": "Proben-Nr", "width": 100} | |
38 ], | |
39 "filters": [ | |
40 {"dataIndex": "netz", "type": "listnetz", "label": "Land"} | |
41 ] | |
42 }, | |
43 { "id": "4", | |
44 "name": "alle Proben mit Ort", | |
45 "description": "alle Proben mit Entnahmeort", | |
46 "sql": "select p.id as id, 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 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", | |
47 "result": [ | |
48 {"dataIndex": "probeId", "header": "ProbeId", "width": 100}, | |
49 {"dataIndex": "netzbetreiberId", "header": "Land", "width": 50}, | |
50 {"dataIndex": "mstId", "header": "MST", "width": 60}, | |
51 {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100}, | |
52 {"dataIndex": "hauptprobenNr", "header": "Proben-Nr", "width": 100}, | |
53 {"dataIndex": "gemId", "header": "Gem-ID", "width": 100}, | |
54 {"dataIndex": "bezeichnung", "header": "Gemeinde", "flex": 1} | |
55 ], | |
56 "filters": [ | |
57 ] | |
58 }, | |
59 { "id": "5", | |
60 "name": "Proben pro Land und UMW (Multiselect)", | |
61 "description": "Abfrage aller Proben gefiltert pro Land und Umweltbereich (mit Mehrfachauswahl)", | |
62 "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)", | |
63 "result": [ | |
64 {"dataIndex": "probeId", "header": "ProbeId", "width": 100}, | |
65 {"dataIndex": "netzbetreiberId", "header": "Land", "width": 50}, | |
66 {"dataIndex": "mstId", "header": "MST", "width": 50}, | |
67 {"dataIndex": "entnahmeVon", "header": "Entnahme von", "width": 120}, | |
68 {"dataIndex": "entnahmeBis", "header": "Entnahme bis", "width": 120}, | |
69 {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100}, | |
70 {"dataIndex": "hauptprobenNr", "header": "Proben-Nr", "width": 100}, | |
71 {"dataIndex": "ortsTyp", "header": "Ortstyp", "width": 50}, | |
72 {"dataIndex": "genId", "header": "Gemeinde-ID", "width": 100}, | |
73 {"dataIndex": "bezeichnung", "header": "Gemeinde", "flex": 1} | |
74 ], | |
75 "filters": [ | |
76 {"dataIndex": "netz", "type": "listnetz", "label": "Land"}, | |
77 {"dataIndex": "umw_id", "type": "listumw", "label": "Umweltbereich", "multiselect":true} | |
78 ] | |
79 } | |
80 ] |