Mercurial > lada > lada-client
comparison app/model/MessstelleLabor.js @ 1066:d198946e5540
Introduced laborMstId as new probe field.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 11 Mar 2016 13:58:04 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1065:7fa853864d9b | 1066:d198946e5540 |
---|---|
1 /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz | |
2 * Software engineering by Intevation GmbH | |
3 * | |
4 * This file is Free Software under the GNU GPL (v>=3) | |
5 * and comes with ABSOLUTELY NO WARRANTY! Check out | |
6 * the documentation coming with IMIS-Labordaten-Application for details. | |
7 */ | |
8 | |
9 /** | |
10 * Model for Messstelle Stammdaten. | |
11 */ | |
12 Ext.define('Lada.model.MessstelleLabor', { | |
13 extend: 'Ext.data.Model', | |
14 | |
15 /** | |
16 * Fields are: | |
17 * - id: The unique identifier (Primary key). | |
18 * - messStelle | |
19 * - laborMst | |
20 */ | |
21 fields: [{ | |
22 name: 'id' | |
23 }, { | |
24 name: 'messStelle' | |
25 }, { | |
26 name: 'laborMst' | |
27 }, { | |
28 name: 'netzbetreiberId' | |
29 }, { | |
30 name: 'displayCombi' | |
31 }] | |
32 }); |