view app/model/Messeinheit.js @ 990:c2a726887dd7

The last status can not be edited anymore. When a new status is added, the new record is preset with ALL previous variables, this includes the StatusStufe! The Date is corrected to the current date. Also the store is sorted by Datum now.
author Dustin Demuth <dustin@intevation.de>
date Wed, 16 Dec 2015 09:49:09 +0100
parents d47ee7439f44
children f73ca04d73a7
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 for Messeinheit Stammdaten.
 */
Ext.define('Lada.model.Messeinheit', {
    extend: 'Ext.data.Model',

    /**
     * Fields are:
     *  - id: The unique identifier (Primary key).
     *  - beschreibung: The long description.
     *  - einheit: The unit.
     *  - eudfMesseinheitId:
     *  - umrechnungsFaktorEudf:
     */
    fields: [{
        name: 'id'
    }, {
        name: 'beschreibung'
    }, {
        name: 'einheit'
    }, {
        name: 'eudfMesseinheitId'
    }, {
        name: 'umrechnungsFaktorEudf'
    }],

    idProperty: 'id',

    proxy: {
        type: 'rest',
        url: 'lada-server/messeinheit',
        reader: {
            type: 'json',
            root: 'data'
        }
    }
});

http://lada.wald.intevation.org