raimund@1316: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz raimund@1316: * Software engineering by Intevation GmbH raimund@1316: * raimund@1316: * This file is Free Software under the GNU GPL (v>=3) raimund@1316: * and comes with ABSOLUTELY NO WARRANTY! Check out raimund@1316: * the documentation coming with IMIS-Labordaten-Application for details. raimund@1316: */ raimund@1316: raimund@1316: /** raimund@1316: * Model for OrtsZusatz Stammdaten. raimund@1316: */ raimund@1316: Ext.define('Lada.model.OrtsZusatz', { raimund@1316: extend: 'Ext.data.Model', raimund@1316: raimund@1316: /** raimund@1316: * Fields are: raimund@1316: * - ozsId: The unique identifier (Primary key). raimund@1316: * - ortszusatz: The long description. raimund@1316: */ raimund@1316: fields: [{ raimund@1316: name: 'ozsId' raimund@1316: }, { raimund@1316: name: 'ortszusatz' raimund@1316: }], raimund@1316: raimund@1326: idProperty: 'ozsId', raimund@1316: raimund@1316: proxy: { raimund@1316: type: 'rest', raimund@1316: url: 'lada-server/rest/ortszusatz', raimund@1316: reader: { raimund@1316: type: 'json', raimund@1316: root: 'data' raimund@1316: } raimund@1316: } raimund@1316: });