annotate app/view/window/GenProbenFromMessprogramm.js @ 1204:95d24315d68e

Improve readability.
author Tom Gottfried <tom@intevation.de>
date Fri, 30 Sep 2016 10:36:47 +0200
parents 39d98891881c
children 613e48a3fef9
rev   line source
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
1 /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
2 * Software engineering by Intevation GmbH
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
3 *
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
4 * This file is Free Software under the GNU GPL (v>=3)
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
5 * and comes with ABSOLUTELY NO WARRANTY! Check out
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
6 * the documentation coming with IMIS-Labordaten-Application for details.
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
7 */
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
8
891
8054232535ba More JSduck
Dustin Demuth <dustin@intevation.de>
parents: 890
diff changeset
9 /**
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
10 * Window to generate Proben from a Messprogramm
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
11 */
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
12 Ext.define('Lada.view.window.GenProbenFromMessprogramm', {
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
13 extend: 'Ext.window.Window',
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
14 alias: 'widget.genpfm',
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
15
1195
39d98891881c Add missing requirement.
Tom Gottfried <tom@intevation.de>
parents: 1191
diff changeset
16 requires: [
39d98891881c Add missing requirement.
Tom Gottfried <tom@intevation.de>
parents: 1191
diff changeset
17 'Lada.store.Proben'
39d98891881c Add missing requirement.
Tom Gottfried <tom@intevation.de>
parents: 1191
diff changeset
18 ],
39d98891881c Add missing requirement.
Tom Gottfried <tom@intevation.de>
parents: 1191
diff changeset
19
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
20 collapsible: true,
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
21 maximizable: true,
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
22 autoShow: true,
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
23 autoScroll: true,
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
24 layout: 'fit',
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
25 constrain: true,
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
26
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
27 record: null,
818
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
28 parentWindow: null,
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
29
890
def27cdd0dfa Added Documentation to Windows
Dustin Demuth <dustin@intevation.de>
parents: 882
diff changeset
30 /**
def27cdd0dfa Added Documentation to Windows
Dustin Demuth <dustin@intevation.de>
parents: 882
diff changeset
31 * This function initialises the Window
def27cdd0dfa Added Documentation to Windows
Dustin Demuth <dustin@intevation.de>
parents: 882
diff changeset
32 */
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
33 initComponent: function() {
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
34 var i18n = Lada.getApplication().bundle;
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
35
818
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
36 // add listeners to change the window appearence when it becomes inactive
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
37 this.on({
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
38 activate: function(){
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
39 this.getEl().removeCls('window-inactive');
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
40 },
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
41 deactivate: function(){
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
42 this.getEl().addCls('window-inactive');
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
43 }
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
44 });
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
45
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
46 this.title = i18n.getMsg('gpfm.window.title');
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
47 var me = this;
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
48 this.buttons = [{
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
49 text: i18n.getMsg('cancel'),
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
50 scope: this,
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
51 handler: this.close
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
52 }, {
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
53 text: i18n.getMsg('generateproben'),
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
54 handler: function() {
1191
62f374ea7ab7 Use UTC date in messprogramm to generate probe objects.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1162
diff changeset
55 var startDate = new Date(me.down('datefield[name=start]').getValue());
62f374ea7ab7 Use UTC date in messprogramm to generate probe objects.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1162
diff changeset
56 var startUTC = Date.UTC(
62f374ea7ab7 Use UTC date in messprogramm to generate probe objects.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1162
diff changeset
57 startDate.getFullYear(), startDate.getMonth(), startDate.getDate());
62f374ea7ab7 Use UTC date in messprogramm to generate probe objects.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1162
diff changeset
58 var endDate = new Date(me.down('datefield[name=end]').getValue());
62f374ea7ab7 Use UTC date in messprogramm to generate probe objects.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1162
diff changeset
59 var endUTC = Date.UTC(
62f374ea7ab7 Use UTC date in messprogramm to generate probe objects.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1162
diff changeset
60 endDate.getFullYear(), endDate.getMonth(), endDate.getDate());
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
61 var jsondata = {
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
62 id: me.record.id,
1191
62f374ea7ab7 Use UTC date in messprogramm to generate probe objects.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1162
diff changeset
63 start: startUTC,
62f374ea7ab7 Use UTC date in messprogramm to generate probe objects.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 1162
diff changeset
64 end: endUTC
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
65 };
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
66
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
67 Ext.Ajax.request({
999
f73ca04d73a7 Refactored Server URL
Dustin Demuth <dustin@intevation.de>
parents: 920
diff changeset
68 url: 'lada-server/rest/probe/messprogramm',
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
69 method: 'POST',
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
70 jsonData: jsondata,
1204
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
71 success: me.onSuccess,
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
72 failure: me.onFailure,
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
73 });
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
74 }
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
75 }];
834
2214aea9fd3a Patched correct file of r. 832
Dustin Demuth <dustin@intevation.de>
parents: 833
diff changeset
76 this.width = 350;
2214aea9fd3a Patched correct file of r. 832
Dustin Demuth <dustin@intevation.de>
parents: 833
diff changeset
77 this.height = 250;
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
78
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
79 // add listeners to change the window appearence when it becomes inactive
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
80 this.on({
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
81 activate: function(){
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
82 this.getEl().removeCls('window-inactive');
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
83 },
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
84 deactivate: function(){
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
85 this.getEl().addCls('window-inactive');
818
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
86 },
097d4edc2f00 Genprobenwindow can only be created once, also fixed messprogrammortewindow 'close with x and can not reopen' bug
Dustin Demuth <dustin@intevation.de>
parents: 812
diff changeset
87 close: function () {
860
03f39ddae596 Restructured Filterresultgrid button-dock, added button to generate Proben from a selection of messprogramme.
Dustin Demuth <dustin@intevation.de>
parents: 855
diff changeset
88 if (this.parentWindow) {
03f39ddae596 Restructured Filterresultgrid button-dock, added button to generate Proben from a selection of messprogramme.
Dustin Demuth <dustin@intevation.de>
parents: 855
diff changeset
89 this.parentWindow.probenWindow = null;
03f39ddae596 Restructured Filterresultgrid button-dock, added button to generate Proben from a selection of messprogramme.
Dustin Demuth <dustin@intevation.de>
parents: 855
diff changeset
90 }
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
91 }
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
92 });
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
93
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
94 // InitialConfig is the config object passed to the constructor on
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
95 // creation of this window. We need to pass it throuh to the form as
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
96 // we need the "Id" param to load the correct item.
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
97 this.items = [{
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
98 border: 0,
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
99 autoScroll: true,
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
100 items: [{
807
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
101 xtype: 'panel',
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
102 border: 0,
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
103 margin: 5,
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
104 layout: 'fit',
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
105 html: '<p>'
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
106 + i18n.getMsg('nameofmessprogramm')
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
107 + '<br/>'
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
108 + this.record.get('name')
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
109 + '</p>'
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
110 }, {
807
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
111 xtype: 'panel',
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
112 border: 0,
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
113 margin: 5,
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
114 layout: 'fit',
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
115 html: '<p>' + i18n.getMsg('messprogtimeperiod') + '</p>'
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
116 }, {
1105
953b359748bb change time range format in GenProbenFromMessprogramm
Michael Stanko <mstanko@bfs.de>
parents: 999
diff changeset
117 xtype: 'datefield',
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
118 fieldLabel: i18n.getMsg('from'),
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
119 labelWidth: 90,
807
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
120 margin: 5,
1105
953b359748bb change time range format in GenProbenFromMessprogramm
Michael Stanko <mstanko@bfs.de>
parents: 999
diff changeset
121 width: 200,
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
122 name: 'start',
1105
953b359748bb change time range format in GenProbenFromMessprogramm
Michael Stanko <mstanko@bfs.de>
parents: 999
diff changeset
123 format: 'd.m.Y',
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
124 period: 'start'
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
125 }, {
1105
953b359748bb change time range format in GenProbenFromMessprogramm
Michael Stanko <mstanko@bfs.de>
parents: 999
diff changeset
126 xtype: 'datefield',
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
127 fieldLabel: i18n.getMsg('to'),
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
128 labelWidth: 90,
807
18697326c862 Less ugly
Dustin Demuth <dustin@intevation.de>
parents: 761
diff changeset
129 margin: 5,
1105
953b359748bb change time range format in GenProbenFromMessprogramm
Michael Stanko <mstanko@bfs.de>
parents: 999
diff changeset
130 width: 200,
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
131 name: 'end',
1105
953b359748bb change time range format in GenProbenFromMessprogramm
Michael Stanko <mstanko@bfs.de>
parents: 999
diff changeset
132 format: 'd.m.Y',
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
133 period: 'end'
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
134 }]
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
135 }];
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
136 this.callParent(arguments);
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
137 },
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
138
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
139 /**
1204
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
140 * Callback on success of request (HTTP status 200)
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
141 */
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
142 onSuccess: function(response) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
143 var i18n = Lada.getApplication().bundle;
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
144
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
145 var json = Ext.JSON.decode(response.responseText);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
146 var radio = Ext.ComponentQuery.query('modeswitcher')[0]
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
147 .down('radiofield[inputValue=proben]');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
148 radio.setValue(true);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
149
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
150 var contentPanel = Ext.ComponentQuery.query('panel[name=main]')[0]
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
151 .down('panel[name=contentpanel]');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
152 contentPanel.removeAll(); //clear the panel: make space for new grids
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
153 var gridstore = Ext.create('Lada.store.Proben');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
154 var frgrid = Ext.create('Lada.view.grid.ProbeList', {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
155 plugins: [{
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
156 ptype: 'gridrowexpander',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
157 gridType: 'Lada.view.grid.Messung',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
158 expandOnDblClick: false,
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
159 gridConfig: {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
160 bottomBar: false
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
161 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
162 }]
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
163 });
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
164
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
165 var columns = [{
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
166 header: i18n.getMsg('prnId'),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
167 dataIndex: 'probeIdAlt'
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
168 }, {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
169 header: i18n.getMsg('netzbetreiberId'),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
170 dataIndex: 'netzbetreiberId',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
171 renderer: function(value) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
172 var r = '';
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
173 if (!value || value === '') {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
174 r = 'Error';
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
175 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
176 var store = Ext.data.StoreManager.get('netzbetreiber');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
177 var record = store.getById(value);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
178 if (record) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
179 r = record.get('netzbetreiber');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
180 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
181 return r;
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
182 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
183 }, {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
184 header: i18n.getMsg('mstId'),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
185 dataIndex: 'mstId',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
186 renderer: function(value) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
187 var r = '';
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
188 if (!value || value === '') {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
189 r = 'Error';
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
190 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
191 var store = Ext.data.StoreManager.get('messstellen');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
192 var record = store.getById(value);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
193 if (record) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
194 r = record.get('messStelle');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
195 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
196 return r;
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
197 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
198 }, {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
199 header: i18n.getMsg('datenbasisId'),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
200 dataIndex: 'datenbasisId',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
201 renderer: function(value) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
202 var r = '';
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
203 if (!value || value === '') {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
204 r = value;
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
205 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
206 var store = Ext.data.StoreManager.get('datenbasis');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
207 var record = store.getById(value);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
208 if (record) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
209 r = record.get('datenbasis');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
210 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
211 return r;
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
212 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
213 }, {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
214 header: i18n.getMsg('baId'),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
215 dataIndex: 'baId',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
216 renderer: function(value) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
217 var r = '';
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
218 if (!value || value === '') {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
219 r = '';
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
220 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
221 var store = Ext.create('Ext.data.Store', {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
222 fields: ['betriebsartId', 'betriebsart'],
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
223 data: [{
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
224 'betriebsartId': '1',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
225 'betriebsart': 'Normal-/Routinebetrieb'
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
226 }, {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
227 'betriebsartId': '2',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
228 'betriebsart': 'Störfall/Intensivbetrieb'
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
229 }]
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
230 });
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
231 var record = store.getById(value);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
232 if (record) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
233 r = record.get('betriebsart');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
234 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
235 return r;
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
236 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
237 }, {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
238 header: i18n.getMsg('probenartId'),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
239 dataIndex: 'probenartId',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
240 renderer: function(value) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
241 var r = '';
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
242 if (!value || value === '') {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
243 r = value;
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
244 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
245 var store = Ext.data.StoreManager.get('probenarten');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
246 var record = store.getById(value);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
247 if (record) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
248 r = record.get('probenart');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
249 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
250 return r;
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
251 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
252 }, {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
253 header: i18n.getMsg('sollVon'),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
254 dataIndex: 'solldatumBeginn',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
255 renderer: function(value) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
256 if (!value) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
257 return '';
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
258 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
259 return Ext.Date.format(value, 'd.m.Y');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
260 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
261 }, {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
262 header: i18n.getMsg('sollBis'),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
263 dataIndex: 'solldatumEnde',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
264 renderer: function(value) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
265 if (!value) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
266 return '';
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
267 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
268 return Ext.Date.format(value, 'd.m.Y');
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
269 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
270 }];
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
271 frgrid.reconfigure(gridstore, columns);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
272
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
273 gridstore.loadData(json.data);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
274 contentPanel.add(frgrid);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
275 Ext.Msg.show({
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
276 title: i18n.getMsg('success'),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
277 autoScroll: true,
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
278 msg: me.evalResponse(json),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
279 buttons: Ext.Msg.OK
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
280 });
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
281 me.close();
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
282 },
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
283
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
284 /**
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
285 * Callback on failure of request (HTTP status != 200)
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
286 */
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
287 onFailure: function(response) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
288 var i18n = Lada.getApplication().bundle;
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
289
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
290 var json = null;
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
291 try {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
292 json = Ext.JSON.decode(response.responseText);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
293 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
294 catch(err){
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
295 Ext.Msg.alert(i18n.getMsg('err.msg.generic.title'),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
296 i18n.getMsg('err.msg.response.body'));
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
297 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
298 if (json) {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
299 if(json.errors.totalCount > 0 || json.warnings.totalCount > 0){
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
300 formPanel.setMessages(json.errors, json.warnings);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
301 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
302 /*
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
303 SSO will send a 302 if the Client is not authenticated
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
304 unfortunately this seems to be filtered by the browser.
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
305 We assume that a 302 was send when the follwing statement
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
306 is true.
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
307 */
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
308 if (response.status == 0 && response.responseText === "") {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
309 Ext.MessageBox.confirm(
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
310 'Erneutes Login erforderlich',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
311 'Ihre Session ist abgelaufen.<br/>'
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
312 + 'Für ein erneutes Login muss die Anwendung '
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
313 + 'neu geladen werden.<br/>'
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
314 + 'Alle ungesicherten Daten gehen dabei verloren.<br/>'
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
315 + 'Soll die Anwendung jetzt neu geladen werden?',
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
316 this.reload);
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
317 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
318 // further error handling
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
319 if(json.message){
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
320 Ext.Msg.alert(i18n.getMsg('err.msg.generic.title')
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
321 +' #'+json.message,
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
322 i18n.getMsg(json.message));
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
323 } else {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
324 Ext.Msg.alert(i18n.getMsg('err.msg.generic.title'),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
325 i18n.getMsg('err.msg.generic.body'));
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
326 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
327 } else {
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
328 Ext.Msg.alert(i18n.getMsg('err.msg.generic.title'),
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
329 i18n.getMsg('err.msg.response.body'));
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
330 }
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
331 },
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
332
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
333
95d24315d68e Improve readability.
Tom Gottfried <tom@intevation.de>
parents: 1195
diff changeset
334 /**
890
def27cdd0dfa Added Documentation to Windows
Dustin Demuth <dustin@intevation.de>
parents: 882
diff changeset
335 * Initiatlise the Data
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
336 */
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
337 initData: function() {
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
338 var i18n = Lada.getApplication().bundle;
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
339 me = this;
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
340 },
809
3bc19188fc3a Added some todos, Enhanced Proge-Generation Success Msg.
Dustin Demuth <dustin@intevation.de>
parents: 807
diff changeset
341
3bc19188fc3a Added some todos, Enhanced Proge-Generation Success Msg.
Dustin Demuth <dustin@intevation.de>
parents: 807
diff changeset
342 /**
3bc19188fc3a Added some todos, Enhanced Proge-Generation Success Msg.
Dustin Demuth <dustin@intevation.de>
parents: 807
diff changeset
343 * Parse ServerResponse when Proben have been generated
3bc19188fc3a Added some todos, Enhanced Proge-Generation Success Msg.
Dustin Demuth <dustin@intevation.de>
parents: 807
diff changeset
344 */
3bc19188fc3a Added some todos, Enhanced Proge-Generation Success Msg.
Dustin Demuth <dustin@intevation.de>
parents: 807
diff changeset
345 evalResponse: function(response) {
3bc19188fc3a Added some todos, Enhanced Proge-Generation Success Msg.
Dustin Demuth <dustin@intevation.de>
parents: 807
diff changeset
346 var i18n = Lada.getApplication().bundle;
3bc19188fc3a Added some todos, Enhanced Proge-Generation Success Msg.
Dustin Demuth <dustin@intevation.de>
parents: 807
diff changeset
347 var r = '';
812
188a9faf96e0 Added Errorhandling for AJAX-Requests, especially Authentication Issues.
Dustin Demuth <dustin@intevation.de>
parents: 809
diff changeset
348 r += response.data.length;
809
3bc19188fc3a Added some todos, Enhanced Proge-Generation Success Msg.
Dustin Demuth <dustin@intevation.de>
parents: 807
diff changeset
349 r += ' ' + i18n.getMsg('probecreated');
3bc19188fc3a Added some todos, Enhanced Proge-Generation Success Msg.
Dustin Demuth <dustin@intevation.de>
parents: 807
diff changeset
350 r += '<br/>';
3bc19188fc3a Added some todos, Enhanced Proge-Generation Success Msg.
Dustin Demuth <dustin@intevation.de>
parents: 807
diff changeset
351 return r;
812
188a9faf96e0 Added Errorhandling for AJAX-Requests, especially Authentication Issues.
Dustin Demuth <dustin@intevation.de>
parents: 809
diff changeset
352 },
188a9faf96e0 Added Errorhandling for AJAX-Requests, especially Authentication Issues.
Dustin Demuth <dustin@intevation.de>
parents: 809
diff changeset
353
890
def27cdd0dfa Added Documentation to Windows
Dustin Demuth <dustin@intevation.de>
parents: 882
diff changeset
354 /**
def27cdd0dfa Added Documentation to Windows
Dustin Demuth <dustin@intevation.de>
parents: 882
diff changeset
355 * Reload the Application
def27cdd0dfa Added Documentation to Windows
Dustin Demuth <dustin@intevation.de>
parents: 882
diff changeset
356 */
812
188a9faf96e0 Added Errorhandling for AJAX-Requests, especially Authentication Issues.
Dustin Demuth <dustin@intevation.de>
parents: 809
diff changeset
357 reload: function(btn) {
188a9faf96e0 Added Errorhandling for AJAX-Requests, especially Authentication Issues.
Dustin Demuth <dustin@intevation.de>
parents: 809
diff changeset
358 if (btn === 'yes') {
188a9faf96e0 Added Errorhandling for AJAX-Requests, especially Authentication Issues.
Dustin Demuth <dustin@intevation.de>
parents: 809
diff changeset
359 location.reload();
188a9faf96e0 Added Errorhandling for AJAX-Requests, especially Authentication Issues.
Dustin Demuth <dustin@intevation.de>
parents: 809
diff changeset
360 }
809
3bc19188fc3a Added some todos, Enhanced Proge-Generation Success Msg.
Dustin Demuth <dustin@intevation.de>
parents: 807
diff changeset
361 }
760
2e7e1a8bf79f Added a Window and Buttons to generate Proben from a Messprogramm
Dustin Demuth <dustin@intevation.de>
parents:
diff changeset
362 });

http://lada.wald.intevation.org