dustin@975: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz dustin@975: * Software engineering by Intevation GmbH dustin@975: * dustin@975: * This file is Free Software under the GNU GPL (v>=3) dustin@975: * and comes with ABSOLUTELY NO WARRANTY! Check out dustin@975: * the documentation coming with IMIS-Labordaten-Application for details. dustin@975: */ dustin@975: dustin@975: /** dustin@975: * Store for DatensatzErzeuger Stammdaten dustin@975: */ dustin@975: Ext.define('Lada.store.DatensatzErzeuger', { dustin@975: extend: 'Ext.data.Store', dustin@984: model: 'Lada.model.DatensatzErzeuger', dustin@984: data: { dustin@984: data: { dustin@984: id: 1, dustin@984: netzbetreiberId: 'F', dustin@984: daErzeugerId: 5, dustin@984: mstId: '12020', dustin@984: bezeichnung: 'ABCDĂ„', dustin@984: letzteAenderung: new Date() dustin@984: } dustin@984: } dustin@975: });