dustin@757: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz dustin@757: * Software engineering by Intevation GmbH dustin@757: * dustin@757: * This file is Free Software under the GNU GPL (v>=3) dustin@757: * and comes with ABSOLUTELY NO WARRANTY! Check out dustin@757: * the documentation coming with IMIS-Labordaten-Application for details. dustin@757: */ dustin@757: dustin@757: /** dustin@757: * This is a Store which maps between the identifiers dustin@757: * of a probenintervall and their meanings. dustin@757: */ dustin@757: dustin@757: Ext.define('Lada.store.Probenintervall', { dustin@757: extend: 'Ext.data.Store', dustin@757: fields: ['probenintervall', dustin@757: { dustin@757: name: 'piTexti18nId', dustin@804: convert: function(v, record) { dustin@804: var i18n = Lada.getApplication().bundle; dustin@804: return i18n.getMsg(v); dustin@804: } dustin@757: }, dustin@757: 'periodstart', dustin@757: 'periodend'], dustin@757: storeId: 'probenintervall', dustin@757: data: [{ dustin@757: 'probenintervall': 'J', dustin@757: 'piTexti18nId': 'pi.yearly', dustin@757: 'periodstart': 1, dustin@757: 'periodend': 365 dustin@757: }, { dustin@757: 'probenintervall': 'H', dustin@757: 'piTexti18nId': 'pi.halfyearly', dustin@757: 'periodstart': 1, tom@1203: 'periodend': 184 dustin@757: }, { dustin@757: 'probenintervall': 'Q', dustin@757: 'piTexti18nId': 'pi.quarteryearly', dustin@757: 'periodstart': 1, tom@1203: 'periodend': 92 dustin@757: }, { dustin@757: 'probenintervall': 'M', dustin@757: 'piTexti18nId': 'pi.monthly', dustin@757: 'periodstart': 1, tom@1203: 'periodend': 31 dustin@757: }, { dustin@757: 'probenintervall': 'W4', dustin@757: 'piTexti18nId': 'pi.fourweekly', dustin@757: 'periodstart': 1, dustin@757: 'periodend': 28 dustin@757: }, { dustin@757: 'probenintervall': 'W2', dustin@757: 'piTexti18nId': 'pi.twoweekly', dustin@757: 'periodstart': 1, dustin@757: 'periodend': 14 dustin@757: }, { dustin@757: 'probenintervall': 'W', dustin@757: 'piTexti18nId': 'pi.weekly', dustin@757: 'periodstart': 1, dustin@757: 'periodend': 7 dustin@757: }, { dustin@757: 'probenintervall': 'T', dustin@757: 'piTexti18nId': 'pi.daily', dustin@757: 'periodstart': 1, dustin@757: 'periodend': 1 dustin@757: }], dustin@757: sorters: [{ dustin@757: property: 'periodend', dustin@786: direction: 'DESC' dustin@757: }], dustin@757: sortOnLoad: true, dustin@786: remoteSort: false dustin@757: }); dustin@757: dustin@757: