]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/conify/global/actor/org_unit.js
Improve Firefox/XULRunner Support
[Evergreen.git] / Open-ILS / web / conify / global / actor / org_unit.js
1 /*
2 # ---------------------------------------------------------------------------
3 # Copyright (C) 2008  Georgia Public Library Service / Equinox Software, Inc
4 # Mike Rylander <miker@esilibrary.com>
5
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; either version 2
9 # of the License, or (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 # ---------------------------------------------------------------------------
16 */
17
18 dojo.require('fieldmapper.AutoIDL');
19 dojo.require('fieldmapper.dojoData');
20 dojo.require('openils.widget.TranslatorPopup');
21 dojo.require('openils.PermaCrud');
22 dojo.require('dojo.parser');
23 dojo.require('dojo.cookie');
24 dojo.require('dojo.data.ItemFileWriteStore');
25 dojo.require('dojo.date.stamp');
26 dojo.require('dijit.form.TextBox');
27 dojo.require('dijit.form.TimeTextBox');
28 dojo.require('dijit.form.ValidationTextBox');
29 dojo.require('dijit.form.CheckBox');
30 dojo.require('dijit.form.FilteringSelect');
31 dojo.require('dijit.Tree');
32 dojo.require('dijit.layout.ContentPane');
33 dojo.require('dijit.layout.TabContainer');
34 dojo.require('dijit.layout.LayoutContainer');
35 dojo.require('dijit.layout.SplitContainer');
36 dojo.require('dojox.widget.Toaster');
37 dojo.require('dojox.fx');
38 dojo.require('openils.XUL');
39 dojo.requireLocalization("openils.conify", "conify");
40
41 // some handy globals
42 var cgi = new CGI();
43 var ses = dojo.cookie('ses') || cgi.param('ses');
44 if(!ses && openils.XUL.isXUL()) {
45     var stash = openils.XUL.getStash();
46     ses = stash.session.key;
47 }
48 var pcrud = new openils.PermaCrud({ authtoken : ses });
49
50 var current_ou, current_ou_hoo, ou_list_store;
51 var dirtyStore = [];
52 var virgin_ou_id = -1;
53
54 var aou_strings = dojo.i18n.getLocalization('openils.conify', 'conify');
55
56 //var ou_type_store = new dojo.data.ItemFileWriteStore({ data : aout.toStoreData( globalOrgTypes ) });
57
58 var highlighter = {};
59
60 function status_update (markup) {
61     if (parent !== window && parent.status_update) parent.status_update( markup );
62 }
63
64 function save_org () {
65
66     new_kid_button.disabled = false;
67     save_ou_button.disabled = false;
68     delete_ou_button.disabled = false;
69
70     var modified_ou = new aou().fromStoreItem( current_ou );
71     modified_ou.ischanged ( 1 );
72
73     pcrud.apply( modified_ou, {
74         timeout : 10, // makes it synchronous
75         onerror : function (r) {
76             highlighter.editor_pane.red.play();
77             status_update( dojo.string.substitute( aou_strings.ERROR_SAVING_DATA, [ou_list_store.getValue( current_ou, 'name' )] ) );
78         },
79         oncomplete : function (r, list) {
80             if ( list[0] ) {
81                 ou_list_store.setValue( current_ou, 'ischanged', 0 );
82                 highlighter.editor_pane.green.play();
83                 status_update( dojo.string.substitute( aou_strings.SUCCESS_SAVE, [ou_list_store.getValue( current_ou, 'name' )] ) );
84             } else {
85                 highlighter.editor_pane.red.play();
86                 status_update( dojo.string.substitute( aou_strings.ERROR_SAVING_DATA, [ou_list_store.getValue( current_ou, 'name' )] ) );
87             }
88         },
89     });
90
91 }
92     
93 function hoo_load () {
94     save_hoo_button.disabled = false;
95
96     var hours_list = pcrud.search( 'aouhoo',{id:ou_list_store.getValue( current_ou, 'id' )});
97
98     if (hours_list.length) {
99         current_ou_hoo = hours_list[0];
100         current_ou_hoo.ischanged(1); // XXX why?
101     } else {
102         current_ou_hoo = new aouhoo().fromHash({
103             isnew   : 1,
104             id      : ou_list_store.getValue( current_ou, 'id' )
105         });
106         for (var i = 0; i < 7; i++) {
107             current_ou_hoo['dow_' + i + '_open']('09:00:00');
108             current_ou_hoo['dow_' + i + '_close']('17:00:00');
109         }
110     }
111
112     for (var i = 0; i < 7; i++) {
113         window['dow_' + i + '_open'].setValue(
114             dojo.date.stamp.fromISOString( 'T' + current_ou_hoo['dow_' + i + '_open']() )
115         );
116         window['dow_' + i + '_close'].setValue(
117             dojo.date.stamp.fromISOString( 'T' + current_ou_hoo['dow_' + i + '_close']() )
118         );
119     }
120
121     highlighter.hoo_pane.green.play();
122 }
123
124
125 function addr_load () {
126
127     save_ill_address.disabled = false;
128     save_holds_address.disabled = false;
129     save_mailing_address.disabled = false;
130     save_billing_address.disabled = false;
131
132     atype_list = ['billing','mailing','holds','ill'];
133     for (var addr_idx in atype_list) {
134
135         var atype = atype_list[addr_idx];
136         var cur_var_name =  'current_' + atype + '_address';
137
138         var this_addr = pcrud.search( 'aoa',{id:ou_list_store.getValue( current_ou, atype + '_address')});
139
140         if (this_addr.length) {
141             window[cur_var_name] = this_addr[0];
142             window[cur_var_name].ischanged( 1 ); // XXX why?
143         } else {
144             window[cur_var_name] = new aoa().fromHash({
145                 isnew       :   1,
146                 org_unit    :   ou_list_store.getValue( current_ou, 'id' )
147             });
148         }
149         set_addr_inputs(atype);
150     }
151
152     highlighter.addresses_pane.green.play();
153
154 }
155
156 function set_addr_inputs (type) {
157     window[type + '_addr_valid'].setChecked( window['current_' + type + '_address'].valid() == 't' ? true : false );
158     window[type + '_addr_type'].setValue( window['current_' + type + '_address'].address_type() || '' );
159     window[type + '_addr_street1'].setValue( window['current_' + type + '_address'].street1() || '' );
160     window[type + '_addr_street2'].setValue( window['current_' + type + '_address'].street2() || '' );
161     window[type + '_addr_city'].setValue( window['current_' + type + '_address'].city() || '' );
162     window[type + '_addr_county'].setValue( window['current_' + type + '_address'].county() || '' );
163     window[type + '_addr_country'].setValue( window['current_' + type + '_address'].country() || '' );
164     window[type + '_addr_state'].setValue( window['current_' + type + '_address'].state() || '' );
165     window[type + '_addr_post_code'].setValue( window['current_' + type + '_address'].post_code() || '' );
166     window[type + '_addr_san'].setValue( window['current_' + type + '_address'].san() || '' );
167 }
168