Mercurial > lada > lada-client
view app/model/Probenzusatz.js @ 679:60a3e9809ea4
moved code from translations_de.js into proper overrides
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Tue, 24 Mar 2015 12:07:35 +0100 |
parents | d47ee7439f44 |
children | 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 Probenzusatz Stammdaten. */ Ext.define('Lada.model.Probenzusatz', { extend: 'Ext.data.Model', /** * Fields are: * - id: The unique identifer (Primary key) * - beschreibung: The long description. * - mehId: * - zusatzwert: * - eudfKeyword: */ fields: [{ name: 'id' }, { name: 'beschreibung' }, { name: 'mehId', type: 'int' }, { name: 'zusatzwert' }, { name: 'eudfKeyword' }], idProperty: 'id', proxy: { type: 'rest', url: 'lada-server/probenzusatz', reader: { type: 'json', root: 'data' } } });