]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/conify/global/actor/org_unit.js
41cc5e8a2358e4bcdeeb0329f25327e8a7104ef7
[working/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.requireLocalization("openils.conify", "conify");
39
40 // some handy globals
41 var cgi = new CGI();
42 var ses = dojo.cookie('ses') || cgi.param('ses');
43 var pcrud = new openils.PermaCrud({ authtoken : ses });
44
45 var current_ou, current_ou_hoo, ou_list_store;
46 var dirtyStore = [];
47 var virgin_ou_id = -1;
48
49 var aou_strings = dojo.i18n.getLocalization('openils.conify', 'conify');
50
51 //var ou_type_store = new dojo.data.ItemFileWriteStore({ data : aout.toStoreData( globalOrgTypes ) });
52
53 var highlighter = {};
54
55 function status_update (markup) {
56     if (parent !== window && parent.status_update) parent.status_update( markup );
57 }
58
59 function save_org () {
60
61     new_kid_button.disabled = false;
62     save_ou_button.disabled = false;
63     delete_ou_button.disabled = false;
64
65     var modified_ou = new aou().fromStoreItem( current_ou );
66     modified_ou.ischanged ( 1 );
67
68     pcrud.apply( modified_ou, {
69         timeout : 10, // makes it synchronous
70         onerror : function (r) {
71             highlighter.editor_pane.red.play();
72             status_update( dojo.string.substitute( aou_strings.ERROR_SAVING_DATA, [ou_list_store.getValue( current_ou, 'name' )] ) );
73         },
74         oncomplete : function (r, list) {
75             if ( list[0] ) {
76                 ou_list_store.setValue( current_ou, 'ischanged', 0 );
77                 highlighter.editor_pane.green.play();
78                 status_update( dojo.string.substitute( aou_strings.SUCCESS_SAVE, [ou_list_store.getValue( current_ou, 'name' )] ) );
79             } else {
80                 highlighter.editor_pane.red.play();
81                 status_update( dojo.string.substitute( aou_strings.ERROR_SAVING_DATA, [ou_list_store.getValue( current_ou, 'name' )] ) );
82             }
83         },
84     });
85
86 }
87     
88 function hoo_load () {
89     save_hoo_button.disabled = false;
90
91     var hours_list = pcrud.search( 'aouhoo',{id:ou_list_store.getValue( current_ou, 'id' )});
92
93     if (hours_list.length) {
94         current_ou_hoo = hours_list[0];
95         current_ou_hoo.ischanged(1); // XXX why?
96     } else {
97         current_ou_hoo = new aouhoo().fromHash({
98             isnew   : 1,
99             id      : ou_list_store.getValue( current_ou, 'id' )
100         });
101         for (var i = 0; i < 7; i++) {
102             current_ou_hoo['dow_' + i + '_open']('09:00:00');
103             current_ou_hoo['dow_' + i + '_close']('17:00:00');
104         }
105     }
106
107     for (var i = 0; i < 7; i++) {
108         window['dow_' + i + '_open'].setValue(
109             dojo.date.stamp.fromISOString( 'T' + current_ou_hoo['dow_' + i + '_open']() )
110         );
111         window['dow_' + i + '_close'].setValue(
112             dojo.date.stamp.fromISOString( 'T' + current_ou_hoo['dow_' + i + '_close']() )
113         );
114     }
115
116     highlighter.hoo_pane.green.play();
117 }
118
119
120 function addr_load () {
121
122     save_ill_address.disabled = false;
123     save_holds_address.disabled = false;
124     save_mailing_address.disabled = false;
125     save_billing_address.disabled = false;
126
127     atype_list = ['billing','mailing','holds','ill'];
128     for (var addr_idx in atype_list) {
129
130         var atype = atype_list[addr_idx];
131         var cur_var_name =  'current_' + atype + '_address';
132
133         var this_addr = pcrud.search( 'aoa',{id:ou_list_store.getValue( current_ou, atype + '_address')});
134
135         if (this_addr.length) {
136             window[cur_var_name] = this_addr[0];
137             window[cur_var_name].ischanged( 1 ); // XXX why?
138         } else {
139             window[cur_var_name] = new aoa().fromHash({
140                 isnew       :   1,
141                 org_unit    :   ou_list_store.getValue( current_ou, 'id' )
142             });
143         }
144         set_addr_inputs(atype);
145     }
146
147     highlighter.addresses_pane.green.play();
148
149 }
150
151 function set_addr_inputs (type) {
152     window[type + '_addr_valid'].setChecked( window['current_' + type + '_address'].valid() == 't' ? true : false );
153     window[type + '_addr_type'].setValue( window['current_' + type + '_address'].address_type() || '' );
154     window[type + '_addr_street1'].setValue( window['current_' + type + '_address'].street1() || '' );
155     window[type + '_addr_street2'].setValue( window['current_' + type + '_address'].street2() || '' );
156     window[type + '_addr_city'].setValue( window['current_' + type + '_address'].city() || '' );
157     window[type + '_addr_county'].setValue( window['current_' + type + '_address'].county() || '' );
158     window[type + '_addr_country'].setValue( window['current_' + type + '_address'].country() || '' );
159     window[type + '_addr_state'].setValue( window['current_' + type + '_address'].state() || '' );
160     window[type + '_addr_post_code'].setValue( window['current_' + type + '_address'].post_code() || '' );
161     window[type + '_addr_san'].setValue( window['current_' + type + '_address'].san() || '' );
162 }
163