Mercurial > lada > lada-client
diff app/model/OrtszuordnungMp.js @ 1289:bfdc00c24baf
Ortszuordnung for messprogramm and probe using same form
author | Maximilian Krambach <mkrambach@intevation.de> |
---|---|
date | Wed, 01 Feb 2017 14:52:51 +0100 |
parents | |
children | 1a2cd9bef6d7 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/model/OrtszuordnungMp.js Wed Feb 01 14:52:51 2017 +0100 @@ -0,0 +1,70 @@ +/* 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 Ortszuordnung of Messprogramme + */ +Ext.define('Lada.model.OrtszuordnungMp', { + extend: 'Ext.data.Model', + + fields: [{ + name: 'id' + }, { + name: 'owner', + type: 'boolean' + }, { + name: 'readonly', + type: 'boolean', + persist: false + }, { + name: 'ort' + }, { + name: 'messprogrammId' + }, { + name: 'ortsTyp' + }, { + name: 'ortszusatztext' + }, { + name: 'letzteAenderung', + type: 'date', + convert: function(v) { + if (!v) { + return v; + } + return new Date(v); + } + }, { + name: 'treeModified', + serialize: function(value) { + if (value === '') { + return null; + } + return value; + } + }, { + name: 'parentModified', + serialize: function(value) { + if (value === '') { + return null; + } + return value; + } + }], + + idProperty: 'id', + + proxy: { + type: 'rest', + url: 'lada-server/rest/ortszuordnungmp', + reader: { + type: 'json', + root: 'data' + } + } +}); +