Mercurial > lada > lada-client
view app/model/Messwert.js @ 666:7d99678fbee3
More translations for the RowEditor
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Thu, 19 Mar 2015 11:42:37 +0100 |
parents | 7a163f7ad5d8 |
children | c07419f07a0c c5b8896768a2 |
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=3) * and comes with ABSOLUTELY NO WARRANTY! Check out * the documentation coming with IMIS-Labordaten-Application for details. */ /** * Model class for Messwerte */ Ext.define('Lada.model.Messwert', { extend: 'Ext.data.Model', fields: [{ name: 'id' }, { name: 'messungsId' }, { name: 'messgroesseId' }, { name: 'messwert', type: 'float' }, { name: 'messwertNwg' }, { name: 'messfehler', type: 'float' }, { name: 'nwgZuMesswert', type: 'float' }, { name: 'mehId' }, { name: 'grenzwertueberschreitung', type: 'boolean' }, { name: 'letzteAenderung', type: 'date', convert: function(v) { if (!v) { return new Date(); } return new Date(v); }, defaultValue: new Date() }], idProperty: 'id', proxy: { type: 'rest', url: 'lada-server/messwert', reader: { type: 'json', root: 'data' } } });