view queryconf.json @ 311:eeb5d3a5e194

JUnit test cases and small test application for LAF importer. !! Currently the tests are ignored when running with maven. !! Some system properties are still missing in maven (coming soon ;))
author Raimund Renkert <rrenkert@intevation.de>
date Tue, 20 Aug 2013 16:19:20 +0200
parents 82bea32eddb7
children 9c3b3d34b260
line wrap: on
line source
[{
    "id": 1,
    "name": "Kein Filter",
    "description": "Abfrage der Proben ohne Filter",
    "sql": "select probe_id, mst_id, umw_id from l_probe",
    "result": [
        {"dataIndex": "probeId", "header": "ProbeId", "flex": 1},
        {"dataIndex": "mstId", "header": "MST", "width": 100},
        {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100}
    ],
    "filters": [
    ]
}, {
    "id": 2,
    "name": "MST und UMW",
    "description": "Abfrage der Proben gefiltert nach Messtellen ID und ID des Umweltbereichs",
    "sql": "select probe_id, mst_id, umw_id from l_probe where (mst_id = :mst_id OR '' = :mst_id) and (umw_id = :umw_id OR '' = :umw_id)",
    "result": [
        {"dataIndex": "probeId", "header": "ProbeId", "flex": 1},
        {"dataIndex": "mstId", "header": "MST", "width": 100},
        {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100}
    ],
    "filters": [
        {"dataIndex": "mst_id", "type": "listmst", "label": "Messstelle"},
        {"dataIndex": "umw_id", "type": "listumw", "label": "Umweltbereich"}
    ]
}, {
    "id": 3,
    "name": "3. Abfrage",
    "description": "Detailiertere Beschreibung der Abfrage",
    "sql": "select probe_id, mst_id, umw_id from l_probe where (mst_id = :mst_id OR '' = :mst_id)",
    "result": [
        {"dataIndex": "probeId", "header": "ProbeId", "flex": 1},
        {"dataIndex": "mstId", "header": "MST", "width": 100},
        {"dataIndex": "umwId", "header": "Umweltbereich", "width": 100}
    ],
    "filters": [
        {"dataIndex": "mst_id", "type": "listmst", "label": "Messstelle"}
    ]
}]
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)