Mercurial > lada > lada-client
changeset 693:817524db4017
Readonly was missing
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Thu, 26 Mar 2015 15:54:50 +0100 |
parents | c31644b3d445 |
children | a0df1a8dff24 |
files | app/controller/form/Messung.js app/controller/form/Probe.js app/model/Messung.js app/view/Viewport.js app/view/window/MessungEdit.js app/view/window/ProbeEdit.js resources/i18n/Lada.properties resources/i18n/Lada_de-DE.properties |
diffstat | 8 files changed, 78 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/app/controller/form/Messung.js Thu Mar 26 14:13:47 2015 +0100 +++ b/app/controller/form/Messung.js Thu Mar 26 15:54:50 2015 +0100 @@ -57,11 +57,16 @@ formPanel.getForm().loadRecord(formPanel.getForm().getRecord()); var json = response.request.scope.reader.jsonData; if (json) { - formPanel.setMessages(json.errors, json.warnings); + if(json.errors.totalCount > 0 || json.warnings.totalCount > 0) { + formPanel.setMessages(json.errors, json.warnings); + } + + if(json.message){ + Ext.Msg.alert(Lada.getApplication().bundle.getMsg('errmsgtitle'), Lada.getApplication().bundle.getMsg(json.message)); + } } } }); - console.log('save'); }, discard: function(button) {
--- a/app/controller/form/Probe.js Thu Mar 26 14:13:47 2015 +0100 +++ b/app/controller/form/Probe.js Thu Mar 26 15:54:50 2015 +0100 @@ -58,11 +58,18 @@ formPanel.getForm().loadRecord(rec); var json = response.request.scope.reader.jsonData; if (json) { - formPanel.setMessages(json.errors, json.warnings); + if(json.errors.totalCount > 0 || json.warnings.totalCount > 0){ + formPanel.setMessages(json.errors, json.warnings); + } + + if(json.message){ + Ext.Msg.alert(Lada.getApplication().bundle.getMsg('errmsgtitle') + +' '+json.message, + Lada.getApplication().bundle.getMsg(json.message)); + } } } }); - console.log('save'); }, discard: function(button) {
--- a/app/model/Messung.js Thu Mar 26 14:13:47 2015 +0100 +++ b/app/model/Messung.js Thu Mar 26 15:54:50 2015 +0100 @@ -18,6 +18,9 @@ name: 'owner', type: 'boolean' }, { + name: 'readonly', + type: 'boolean' + }, { name: 'probeId' }, { name: 'mmtId'
--- a/app/view/Viewport.js Thu Mar 26 14:13:47 2015 +0100 +++ b/app/view/Viewport.js Thu Mar 26 15:54:50 2015 +0100 @@ -44,7 +44,20 @@ items: [{ text: 'About', action: 'about' - }] + }, { + text: 'Zeit', + handler: function(){ + thetime = new Date(); + Ext.Msg.alert("Zeit", "Laut Ihrer lokalen Systemuhr ist es\n"+ + thetime.toString() + "\n\n" + + "Das entspricht der Serverzeit:\n" + + thetime.toUTCString() + "\n\n" + + "Alle Messwerte werden in GMT/UTC auf dem Server gespeichert. " + + "Ihr Webbrowser rechnet diese automatisch um." + ); + } + } + ] } }, '->', { xtype: 'box',
--- a/app/view/window/MessungEdit.js Thu Mar 26 14:13:47 2015 +0100 +++ b/app/view/window/MessungEdit.js Thu Mar 26 15:54:50 2015 +0100 @@ -96,6 +96,7 @@ initData: function() { this.clearMessages(); + var that = this; Ext.ClassManager.get('Lada.model.Messung').load(this.record.get('id'), { failure: function(record) { // TODO @@ -117,6 +118,7 @@ } else { me.record.set('treeModified', me.probe.get('treeModified')); + that.disableForm(); } } }); @@ -130,6 +132,32 @@ }, scope: this }); + console.log(this.record); + if (this.record.get('readonly') == true){ + this.disableForm(); + } + }, + + disableForm: function(){ + this.down('messungform').setReadOnly(true); + this.disableChildren(); + }, + + enableForm: function(){ + this.down('messungform').setReadOnly(false); + this.enableChildren(); + }, + + disableChildren: function(){ + this.down('fset[name=messwerte]').down('messwertgrid').setReadOnly(true); + this.down('fset[name=messungstatus]').down('statusgrid').setReadOnly(true); + this.down('fset[name=messungskommentare]').down('mkommentargrid').setReadOnly(true); + }, + + enableChildren: function(){ + this.down('fset[name=messwerte]').down('messwertgrid').setReadOnly(false); + this.down('fset[name=messungstatus]').down('statusgrid').setReadOnly(false); + this.down('fset[name=messungskommentare]').down('mkommentargrid').setReadOnly(false); }, setMessages: function(errors, warnings) {
--- a/app/view/window/ProbeEdit.js Thu Mar 26 14:13:47 2015 +0100 +++ b/app/view/window/ProbeEdit.js Thu Mar 26 15:54:50 2015 +0100 @@ -30,6 +30,7 @@ record: null, + initComponent: function() { if (this.record === null) { Ext.Msg.alert('Keine valide Probe ausgewählt!'); @@ -122,9 +123,18 @@ }, scope: this }); + + // If the Probe is ReadOnly, disable Inputfields and grids if (this.record.get('readonly') == true){ this.down('probeform').setReadOnly(true); this.disableChildren(); + + //The Owner of a Probe is always allowed to add a Messung. + // ToDo ist it required to check if a Status exists? + if (this.record.get('owner') == true){ + //allow to add Messungen + this.down('fset[name=messungen]').down('messunggrid').down('button[name=add]').enable(); + } } },
--- a/resources/i18n/Lada.properties Thu Mar 26 14:13:47 2015 +0100 +++ b/resources/i18n/Lada.properties Thu Mar 26 15:54:50 2015 +0100 @@ -16,6 +16,7 @@ 652: Geo: Werte passen nicht zusammen 661: Date: Datum liegt in der Zukunft 662: Date: Anfang nach Ende +697: Der zugrundeliegende Datensatz wurde in der Zwischenzeit verändert 699: Keine Berechtigung ! Import errors
--- a/resources/i18n/Lada_de-DE.properties Thu Mar 26 14:13:47 2015 +0100 +++ b/resources/i18n/Lada_de-DE.properties Thu Mar 26 15:54:50 2015 +0100 @@ -16,6 +16,7 @@ 652: Werte passen nicht zusammen 661: Datum liegt in der Zukunft 662: Anfang nach Ende +697: Der zugrundeliegende Datensatz wurde in der Zwischenzeit verändert 698: Kein Zugriff 699: Keine Berechtigung @@ -31,3 +32,8 @@ ## entnahmeOrt: Entnahmeort test: Testdatensatz + +## +# Msg: +## +errmsgtitle: Fehler