Mercurial > lada > lada-client
view app/view/form/Messung.js @ 945:023e622f9551
Added the ability to work with "StatusWerten" which are delivered by the lada-server.
To enable the uses of StatusWerte, the controller for the status grid, needed to be extended.
In addition, the form and grid views of Messung and Status were updated.
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Tue, 27 Oct 2015 16:46:58 +0100 |
parents | a1d72228af00 |
children | c7bf0b459074 |
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. */ /** * Form to edit a Messung */ Ext.define('Lada.view.form.Messung', { extend: 'Ext.form.Panel', alias: 'widget.messungform', requires: [ 'Lada.view.widget.Datenbasis', 'Lada.view.widget.base.CheckBox', 'Lada.view.widget.Messmethode', 'Lada.view.widget.base.TextField', 'Lada.view.widget.base.Datetime' ], model: 'Lada.model.Messung', minWidth: 650, margin: 5, border: 0, recordId: null, trackResetOnLoad: true, initComponent: function() { var me = this; this.items = [{ xtype: 'fieldset', title: 'Allgemein', items: [{ border: 0, margin: '0, 0, 10, 0', layout: { type: 'table', columns: 2 }, dockedItems: [{ xtype: 'toolbar', dock: 'bottom', border: '0, 1, 1, 1', style: { borderBottom: '1px solid #b5b8c8 !important', borderLeft: '1px solid #b5b8c8 !important', borderRight: '1px solid #b5b8c8 !important' }, items: ['->', { text: 'Speichern', qtip: 'Daten speichern', icon: 'resources/img/dialog-ok-apply.png', action: 'save', disabled: true }, { text: 'Verwerfen', qtip: 'Ă„nderungen verwerfen', icon: 'resources/img/dialog-cancel.png', action: 'discard', disabled: true }] }], items: [{ xtype: 'tfield', name: 'nebenprobenNr', maxLength: 10, margin: '0, 10, 5, 0', fieldLabel: 'Nebenprobennr.', width: 300, labelWidth: 100 }, { xtype: 'messmethode', name: 'mmtId', margin: '0, 10, 5, 0', fieldLabel: 'Messmethode', width: 300, labelWidth: 100 }, { xtype: 'datetime', name: 'messzeitpunkt', margin: '0, 10, 5, 0', fieldLabel: 'Messzeitpunkt', width: 300, labelWidth: 100 }, { xtype: 'numberfield', allowDecimals: false, allowExponential: false, enforceMaxLength: true, maxLength: 10, minValue: 0, name: 'messdauer', margin: '0, 10, 5, 0', fieldLabel: 'Messdauer', width: 300, labelWidth: 100 }, { xtype: 'chkbox', name: 'fertig', margin: '0, 10, 5, 0', fieldLabel: 'Fertig', width: 300, labelWidth: 100 }, { xtype: 'chkbox', name: 'geplant', readOnly: true, margin: '0, 10, 5, 0', fieldLabel: 'Geplant', width: 300, labelWidth: 100 }, { xtype: 'textfield', name: 'status', readOnly: true, isFormField: false, maxLength: 10, margin: '0, 10, 5, 0', fieldLabel: 'Status', width: 300, labelWidth: 100, submitValue: false, isFormField: false, preventMark: true, //Do not display error msg. validateValue: function() { return true; //this field is always valid }, }] }] }]; this.callParent(arguments); }, setRecord: function(record) { this.getForm().loadRecord(record); this.retrieveStatus(record.id, record.get('status')); }, retrieveStatus: function(messungsId, statusId) { var i18n = Lada.getApplication().bundle; var msg = i18n.getMsg('load.statuswert'); var textfield = this.down('[name=status]'); textfield.setRawValue(msg); var sStore = Ext.StoreManager.lookup('Status'); if (!sStore) { sStore = Ext.create('Lada.store.Status'); } sStore.on('load', function(records, operation, success) { var ret; var i18n = Lada.getApplication().bundle; if (sStore.getTotalCount() === 0) { ret = 0; } else { ret = sStore.getById(statusId).get('statusWert'); } this.setStatusWert(ret); }, this); sStore.load({ params: { messungsId: messungsId } }); }, setStatusWert: function(value){ var swStore = Ext.StoreManager.lookup('StatusWerte'); if (!swStore) { var swStore = Ext.create('Lada.store.StatusWerte'); } swStore.on('load', function(records, operation, success) { var i18n = Lada.getApplication().bundle; var msg = i18n.getMsg('load.statuswert.error'); var textfield = this.down('[name=status]'); if (success) { msg = swStore.getById(value).get('wert'); } textfield.setRawValue(msg); }, this); swStore.load(); }, setMessages: function(errors, warnings) { var key; var element; var content; var i18n = Lada.getApplication().bundle; if (warnings) { for (key in warnings) { element = this.down('component[name=' + key + ']'); if (!element) { continue; } content = warnings[key]; var warnText = ''; for (var i = 0; i < content.length; i++) { warnText += i18n.getMsg(content[i].toString()) + '\n'; } element.showWarnings(warnText); } } if (errors) { for (key in errors) { element = this.down('component[name=' + key + ']'); if (!element) { continue; } content = errors[key]; var errorText = ''; for (var i = 0; i < content.length; i++) { errorText += i18n.getMsg(content[i].toString()) + '\n'; } element.showErrors(errorText); } } }, clearMessages: function() { this.down('tfield[name=nebenprobenNr]').clearWarningOrError(); //this.down('messmethode[name=mmtId]').clearWarningOrError(); this.down('datetime[name=messzeitpunkt]').clearWarningOrError(); //this.down('numberfield[name=messdauer]').clearWarningOrError(); this.down('chkbox[name=fertig]').clearWarningOrError(); this.down('chkbox[name=geplant]').clearWarningOrError(); }, setReadOnly: function(value) { this.down('tfield[name=nebenprobenNr]').setReadOnly(value); this.down('messmethode[name=mmtId]').setReadOnly(value); this.down('datetime[name=messzeitpunkt]').setReadOnly(value); this.down('numberfield[name=messdauer]').setReadOnly(value); if (!this.getForm().getRecord().get('owner')) { //Only set this Field to Readonly when the User is NOT the Owner of the Record. this.down('chkbox[name=fertig]').setReadOnly(value); } } });