torsten@472: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz torsten@472: * Software engineering by Intevation GmbH torsten@472: * torsten@472: * This file is Free Software under the GNU GPL (v>=3) torsten@472: * and comes with ABSOLUTELY NO WARRANTY! Check out torsten@472: * the documentation coming with IMIS-Labordaten-Application for details. torsten@472: */ torsten@472: torsten@319: /** torsten@319: * Model class for Probenzusatzwert torsten@319: */ torsten@122: Ext.define('Lada.model.Probenzusatzwert', { torsten@332: extend: 'Lada.model.Base', raimund@491: raimund@491: fields: [{ raimund@491: name: "id" raimund@491: }, { raimund@491: name: "mehId" raimund@491: }, { raimund@491: name: "beschreibung" raimund@491: }, { raimund@491: name: "zusatzwert" raimund@491: }, { raimund@491: name: "eudfKeyword" raimund@491: }], raimund@491: raimund@488: idProperty: "id", raimund@491: torsten@122: proxy: { torsten@122: type: 'rest', raimund@488: url: 'server/rest/sta_probenzusatz', torsten@122: autoload: true, torsten@122: reader: { torsten@122: type: 'json', torsten@122: root: 'data' torsten@122: } torsten@122: } torsten@122: });