Mercurial > lada > lada-client
diff app/controller/grid/ProbeList.js @ 1275:1df7a0899ebe
merged.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Tue, 10 Jan 2017 10:05:00 +0100 |
parents | 208254152ac0 |
children | 69ebd572fe5c |
line wrap: on
line diff
--- a/app/controller/grid/ProbeList.js Tue Jan 10 10:03:57 2017 +0100 +++ b/app/controller/grid/ProbeList.js Tue Jan 10 10:05:00 2017 +0100 @@ -178,7 +178,6 @@ data = JSON.parse(data); // ensure data and prep are equal, not sure // if json.parse changes order of things - console.log(data); emptyMessstelle = { "id": null, @@ -204,17 +203,30 @@ "s11": null }; - for (i in data) { + for (var i in data) { probe = data[i]; deskriptoren = probe.deskriptoren; messstelle = probe.messstelle; + labormessstelle = probe.labormessstelle; + ortszuordnung = probe.ortszuordnung; + zusatzwerte = probe.zusatzwerte; + if (messstelle != null) { prep[i].messstelle = []; prep[i].messstelle[0] = messstelle; + prep[i]['messstelle.messStelle'] = messstelle.messStelle; } else { prep[i].messstelle = []; prep[i].messstelle[0] = emptyMessstelle; + prep[i]['messstelle.messStelle'] = ''; + } + + if (labormessstelle != null) { + prep[i]['labormessstelle.messStelle'] = labormessstelle.messStelle; + } + else { + prep[i]['labormessstelle.messStelle'] = ''; } if (deskriptoren != null) { @@ -225,7 +237,30 @@ prep[i].deskriptoren = []; prep[i].deskriptoren[0] = emptyDeskriptor; } + + // See: app/view/grid/Probenzusatzwert.js + // Calculate NWG < symbol , as this is NOT done by the server + for (z in zusatzwerte){ + var nwg = zusatzwerte[z]['nwgZuMesswert']; + var mw = zusatzwerte[z]['messwertPzs']; + if ( mw < nwg) { + prep[i].zusatzwerte[z]['messwertNwg'] = '<'; + } + else { + prep[i].zusatzwerte[z]['messwertNwg'] = null; + } + } + + // Flatten the Ortszuodnung Array + for (var o in ortszuordnung) { + oz = ortszuordnung[o]; + for (var e in oz.ort) { + prep[i].ortszuordnung[o]['ort']=null; + prep[i].ortszuordnung[o]['ort.'+e]=oz.ort[e]; + } + } } + return JSON.stringify(prep); }, @@ -322,8 +357,6 @@ failure: function(response) { console.log('failure'); // Error handling - // TODO - console.log(response.responseText) button.enable(); button.setLoading(false); if (response.responseText) { @@ -488,8 +521,6 @@ var i18n = Lada.getApplication().bundle; console.log('failure'); // Error handling - // TODO - //console.log(response.responseText) button.enable(); button.setLoading(false); if (response.responseText) {