]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/conify/global/actor/org_unit.js
066deddf70328733e1482dfe7464066a73d3e466
[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) {
75             var res = r.recv();
76             if ( res && res.content() ) {
77                 ou_list_store.setValue( current_ou, 'ischanged', 0 );
78                 highlighter.editor_pane.green.play();
79                 status_update( dojo.string.substitute( aou_strings.SUCCESS_SAVE, [ou_list_store.getValue( current_ou, 'name' )] ) );
80             } else {
81                 highlighter.editor_pane.red.play();
82                 status_update( dojo.string.substitute( aou_strings.ERROR_SAVING_DATA, [ou_list_store.getValue( current_ou, 'name' )] ) );
83             }
84         },
85     });
86
87 }
88     
89 function hoo_load () {
90     save_hoo_button.disabled = false;
91
92     var hours_list = pcrud.search( 'aouhoo',{id:ou_list_store.getValue( current_ou, 'id' )});
93
94     if (hours_list.length) {
95         current_ou_hoo = hours_list[0];
96         current_ou_hoo.ischanged(1); // XXX why?
97     } else {
98         current_ou_hoo = new aouhoo().fromHash({
99             isnew   : 1,
100             id      : ou_list_store.getValue( current_ou, 'id' )
101         });
102         for (var i = 0; i < 7; i++) {
103             current_ou_hoo['dow_' + i + '_open']('09:00:00');
104             current_ou_hoo['dow_' + i + '_close']('17:00:00');
105         }
106     }
107
108     for (var i = 0; i < 7; i++) {
109         window['dow_' + i + '_open'].setValue(
110             dojo.date.stamp.fromISOString( 'T' + current_ou_hoo['dow_' + i + '_open']() )
111         );
112         window['dow_' + i + '_close'].setValue(
113             dojo.date.stamp.fromISOString( 'T' + current_ou_hoo['dow_' + i + '_close']() )
114         );
115     }
116
117     highlighter.hoo_pane.green.play();
118 }
119
120
121 function addr_load () {
122
123     save_ill_address.disabled = false;
124     save_holds_address.disabled = false;
125     save_mailing_address.disabled = false;
126     save_billing_address.disabled = false;
127
128     atype_list = ['billing','mailing','holds','ill'];
129     for (var addr_idx in atype_list) {
130
131         var atype = atype_list[addr_idx];
132         var cur_var_name =  'current_' + atype + '_address';
133
134         var this_addr = pcrud.search( 'aoa',{id:ou_list_store.getValue( current_ou, atype + '_address')});
135
136         if (this_addr.length) {
137             window[cur_var_name] = this_addr[0];
138             window[cur_var_name].ischanged( 1 ); // XXX why?
139         } else {
140             window[cur_var_name] = new aoa().fromHash({
141                 isnew       :   1,
142                 org_unit    :   ou_list_store.getValue( current_ou, 'id' )
143             });
144         }
145         set_addr_inputs(atype);
146     }
147
148     highlighter.addresses_pane.green.play();
149
150 }
151
152 function set_addr_inputs (type) {
153     window[type + '_addr_valid'].setChecked( window['current_' + type + '_address'].valid() == 't' ? true : false );
154     window[type + '_addr_type'].setValue( window['current_' + type + '_address'].address_type() || '' );
155     window[type + '_addr_street1'].setValue( window['current_' + type + '_address'].street1() || '' );
156     window[type + '_addr_street2'].setValue( window['current_' + type + '_address'].street2() || '' );
157     window[type + '_addr_city'].setValue( window['current_' + type + '_address'].city() || '' );
158     window[type + '_addr_county'].setValue( window['current_' + type + '_address'].county() || '' );
159     window[type + '_addr_country'].setValue( window['current_' + type + '_address'].country() || '' );
160     window[type + '_addr_state'].setValue( window['current_' + type + '_address'].state() || '' );
161     window[type + '_addr_post_code'].setValue( window['current_' + type + '_address'].post_code() || '' );
162     window[type + '_addr_san'].setValue( window['current_' + type + '_address'].san() || '' );
163 }
164