]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/conify/global/actor/org_unit.html
Fix OU Editor save bug
[working/Evergreen.git] / Open-ILS / web / conify / global / actor / org_unit.html
1 <!--
2 # Copyright (C) 2008  Georgia Public Library Service / Equinox Software, Inc
3 # Mike Rylander <miker@esilibrary.com>
4
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 -->
15 <!DOCTYPE html PUBLIC 
16         "-//W3C//DTD XHTML 1.0 Transitional//EN" 
17         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" [
18         <!--#include virtual="/opac/locale/${locale}/conify.dtd"-->
19 ]>
20 <html xmlns="http://www.w3.org/1999/xhtml">
21         <head>
22                 <title>&conify.org_unit.title;</title>
23
24                 <style type="text/css">
25                         @import url('/js/dojo/dojo/resources/dojo.css');
26                         @import url('/js/dojo/dijit/themes/tundra/tundra.css');
27                         @import url('/js/dojo/dojox/widget/Toaster/Toaster.css');
28                 </style>
29
30                 <style type="text/css">
31                         html, body
32                         {
33                                 height: 100%;
34                                 width: 100%;
35                                 margin: 0px 0px 0px 0px;
36                                 padding: 0px 0px 0px 0px;
37                                 overflow: hidden;
38                         }
39
40                         th
41                         {
42                                 text-align: right;
43                                 font-weight: bold;
44                                 padding-left: 20px;
45                                 padding-right: 5px;
46                         }
47                 </style>
48
49                 <!-- The OpenSRF API writ JS -->
50                 <script language='javascript' src='/IDL2js' type='text/javascript'></script>
51                 <script language='javascript' src='/opac/common/js/utils.js' type='text/javascript'></script>
52                 <script language='javascript' src='/opac/common/js/CGI.js' type='text/javascript'></script>
53                 <script language='javascript' src='/opac/common/js/JSON_v1.js' type='text/javascript'></script>
54
55                 <!-- Dojo goodness -->
56                 <script type="text/javascript" src="../admin.js"></script>
57
58                 <script type="text/javascript" src="/js/dojo/dojo/dojo.js"></script>
59                 <script type="text/javascript" src="/js/dojo/dojo/openils_dojo.js"></script>
60                 <script type="text/javascript" src="/js/dojo/dijit/dijit.js"></script>
61
62                 <script type="text/javascript" src="org_unit.js"></script>
63
64         </head>
65
66         <body class="tundra" id='pagebody'>
67
68                 <div dojoType="dijit.layout.SplitContainer" orientation="horizontal" style="height: 100%">
69
70                         <div dojoType="dijit.layout.ContentPane" sizeShare="100">
71                                 <script type="dojo/method">
72 <![CDATA[
73
74                     pcrud.retrieveAll( 'aou', {
75                         timeout : 10, order_by : { aou : 'shortname' },
76                         onerror : function (r) { status_update(aou_strings.ERROR_FETCHING_ORGS); },
77                         oncomplete : function (r) {
78                             var _ou_list = r.recv().content();
79                             var _ou_data = aou.toStoreData( _ou_list );
80                             ou_list_store = new dojo.data.ItemFileWriteStore({ data : _ou_data });
81
82                             ou_list_store.onSet = function (item, attr, o, n) {
83                                 if (attr == 'ischanged') return;
84                                 if ((n == o) || ((o == null) && (n == ''))) return;
85                                 this.setValue( item, 'ischanged', 1);
86                             };
87
88                             dojo.addOnUnload( function (event) {
89
90                                 ou_list_store.fetch({
91                                     query : { ischanged : 1 },
92                                     queryOptions : { deep : true },
93                                     onItem : function (item, req) {
94                                         try {
95                                             if (this.isItem( item )) window.dirtyStore.push( item );
96                                         } catch (e) {}
97                                     },
98                                     scope : window.ou_list_store
99                                 });
100
101                                 if (window.dirtyStore.length > 0) {
102                                     var confirmation = confirm(aou_strings.CONFIRM_EXIT_AOU);
103
104                                     if (confirmation) {
105                                         for (var i in dirtyStore) {
106                                             current_ou = window.dirtyStore[i];
107                                             save_org(true);
108                                         }
109                                     }
110                                 }
111                             });
112                         }
113                     });
114
115                     pcrud.retrieveAll( 'aout', {
116                         timeout : 10, order_by : { aout : 'depth' },
117                         onerror : function (r) { status_update(aou_strings.ERROR_FETCHING_TYPES_AOUT); },
118                         oncomplete : function (r) {
119                             window._ou_type_list = r.recv().content();
120                             window._ou_type_data = aout.toStoreData( window._ou_type_list );
121                             window.ou_type_store = new dojo.data.ItemFileReadStore({ data : window._ou_type_data });
122                        }
123                     });
124
125                                         highlighter.ou_tree = {};
126                                         highlighter.editor_pane = {};
127                                         highlighter.hoo_pane = {};
128                                         highlighter.addresses_pane = {};
129
130                                         highlighter.ou_tree.green = dojox.fx.highlight( { color : '#B4FFB4', node : 'ou_tree', duration : 500 } );
131                                         highlighter.ou_tree.red = dojox.fx.highlight( { color : '#FF2018', node : 'ou_tree', duration : 500 } );
132
133                                         highlighter.editor_pane.green = dojox.fx.highlight( { color : '#B4FFB4', node : 'editor_pane', duration : 500 } );
134                                         highlighter.editor_pane.red = dojox.fx.highlight( { color : '#FF2018', node : 'editor_pane', duration : 500 } );
135
136                                         highlighter.hoo_pane.green = dojox.fx.highlight( { color : '#B4FFB4', node : 'hoo_pane', duration : 500 } );
137                                         highlighter.hoo_pane.red = dojox.fx.highlight( { color : '#FF2018', node : 'hoo_pane', duration : 500 } );
138
139                                         highlighter.addresses_pane.green = dojox.fx.highlight( { color : '#B4FFB4', node : 'addresses_pane', duration : 500 } );
140                                         highlighter.addresses_pane.red = dojox.fx.highlight( { color : '#FF2018', node : 'addresses_pane', duration : 500 } );
141 ]]>
142                                 </script>
143                                 <div
144                                   id="ou_tree"
145                                   label="&conify.org_unit.ou_tree.label;"
146                                   query="{'_top':'true'}"
147                                   dojoType="dijit.Tree"
148                                   store="ou_list_store"
149                                   minSize="200"
150                                   jsId="ou_tree"
151                                 >
152
153                                         <script type="dojo/method" event="onClick" args="item,node">
154 <![CDATA[
155                                                 right_pane_toggler.show();
156
157                                                 current_ou = item;
158                                                 window.current_fm_ou = new aou().fromStoreItem(item);
159
160                                                 highlighter.editor_pane.green.play();
161                                                 status_update( dojo.string.substitute( aou_strings.STATUS_EDITING, [this.store.getValue( item, 'name' )] ) );
162
163                                                 new_kid_button.disabled = false;
164                                                 save_ou_button.disabled = false;
165                                                 delete_ou_button.disabled = false;
166
167                                                 dojo.byId('current_ou_name').innerHTML = this.store.getValue( current_ou, 'name' );
168
169                                                 var main_settings_fields = [ 'name', 'shortname', 'email', 'phone', 'ou_type' ];
170                                                 for ( var i in main_settings_fields ) {
171                                                         var field = main_settings_fields[i];
172                                                         var value = this.store.getValue( current_ou, field );
173
174                                                         if (!value) {
175                                                                 window["editor_pane_" + field].setValue( '' ); // unset the value
176                                                                 window["editor_pane_" + field].setDisplayedValue( '' ); // unset the value
177                                                         } else window["editor_pane_" + field].setValue( value );
178                                                 }
179
180                                                 if ( this.store.getValue( current_ou, '_trueRoot' ) == 'true' ) {
181                                                         editor_pane_parent_ou.disabled = true;
182                                                         editor_pane_parent_ou.setValue(null);
183                                                         editor_pane_parent_ou.setDisplayedValue('');
184                                                         editor_pane_parent_ou.validate(false);
185                                                 } else {
186                                                         editor_pane_parent_ou.disabled = false;
187                                                         editor_pane_parent_ou.validate(true);
188                                                         editor_pane_parent_ou.setValue( this.store.getValue( current_ou, 'parent_ou' ) );
189                                                 }
190
191                                                 editor_pane_opac_visible.setChecked( this.store.getValue( current_ou, 'opac_visible' ) == 't' ? true : false );
192
193                                                 hoo_load();
194                                                 addr_load();
195 ]]>
196                                         </script>
197
198                                         <script type="dojo/method" event="getLabel" args="item,pI">
199                                                 var label = this.store.getValue(item,'shortname') + ' : ' + this.store.getValue(item,'name');
200                                                 if (this.store.getValue(item,'ischanged') == 1) label = '* ' + label;
201                                                 return label;
202                                         </script>
203
204                                 </div>
205                         </div>
206
207                         <div jsId="right_pane" id="right_pane" dojoType="dijit.layout.ContentPane"  sizeShare="200">
208                                 <script type="dojo/method">
209                                         window.right_pane_toggler = new dojo.fx.Toggler({ node: 'right_pane'});
210                                         window.right_pane_toggler.hide();
211                                 </script>
212
213                                 <div id="right_tabpane" dojoType="dijit.layout.TabContainer">
214         
215                                         <div id="editor_pane" dojoType="dijit.layout.ContentPane" title="&conify.org_unit.editor_pane.title;">
216
217                                                 <table class="tundra" style="margin:10px;">
218                                                         <tr>
219                                                                 <th>&conify.org_unit.editor_pane.org_unit_name;</th>
220                                                                 <td>
221                                                                         <span id="editor_pane_name" dojoType="dijit.form.ValidationTextBox" jsId="editor_pane_name" regExp=".+" required="true">
222                                                                                 <script type="dojo/connect" event="onChange">
223                                                                                         if (current_ou) ou_list_store.setValue( current_ou, "name", this.getValue() );
224                                                                                 </script>
225                                                                         </span>
226                                                                         <span dojoType="openils.widget.TranslatorPopup" targetObject="current_fm_ou" field="name"></span>
227                                                                 </td>
228                                                         </tr>
229                                                         <tr>
230                                                                 <th>&conify.org_unit.editor_pane.org_unit_code;</th>
231                                                                 <td>
232                                                                         <span id="editor_pane_shortname" dojoType="dijit.form.ValidationTextBox" jsId="editor_pane_shortname" uppercase="true" regExp=".+" required="true">
233                                                                                 <script type="dojo/connect" event="onChange">
234                                                                                         if (current_ou) ou_list_store.setValue( current_ou, "shortname", this.getValue() );
235                                                                                 </script>
236                                                                         </span>
237                                                                 </td>
238                                                         </tr>
239                                                         <tr>
240                                                                 <th>&conify.org_unit.editor_pane.main_email;</th>
241                                                                 <td>
242                                                                         <span id="editor_pane_email" dojoType="dijit.form.ValidationTextBox" jsId="editor_pane_email" regExp="^\w+(?:\.\w+)*\@\w+(?:\.\w+)+$">
243                                                                                 <script type="dojo/connect" event="onChange">
244                                                                                         if (current_ou) ou_list_store.setValue( current_ou, "email", this.getValue() );
245                                                                                 </script>
246                                                                         </span>
247                                                                 </td>
248                                                         </tr>
249                                                         <tr>
250                                                                 <th>&conify.org_unit.editor_pane.main_phone;</th>
251                                                                 <td>
252                                                                         <span id="editor_pane_phone" dojoType="dijit.form.ValidationTextBox" jsId="editor_pane_phone" regExp="^(?:(?:\d{1}[ -\.])?\(?\d{3}\)?[ -\.]{1})?\d{3}[ -\.]{1}\d{4}(| \S+.*)$">
253                                                                                 <script type="dojo/connect" event="onChange">
254                                                                                         if (current_ou) ou_list_store.setValue( current_ou, "phone", this.getValue() );
255                                                                                 </script>
256                                                                         </span>
257                                                                 </td>
258                                                         </tr>
259                                                         <tr>
260                                                                 <th>&conify.org_unit.editor_pane.org_unit_type;</th>
261                                                                 <td>
262                                                                         <div
263                                                                           id="editor_pane_ou_type"
264                                                                           dojoType="dijit.form.FilteringSelect"
265                                                                           jsId="editor_pane_ou_type"
266                                                                           store="ou_type_store"
267                                                                           searchAttr="name"
268                                                                           ignoreCase="true"
269                                                                           required="true"
270                                                                         >
271                                                                                 <script type="dojo/method" event="onChange">
272                                                                                         if (current_ou) ou_list_store.setValue( current_ou, "ou_type", this.getValue() );
273                                                                                 </script>
274                                                                         </div>
275                                                                 </td>
276                                                         </tr>
277                                                         <tr>
278                                                                 <th>&conify.org_unit.editor_pane.parent;</th>
279                                                                 <td>
280                                                                         <div
281                                                                           id="editor_pane_parent_ou"
282                                                                           dojoType="dijit.form.FilteringSelect"
283                                                                           jsId="editor_pane_parent_ou"
284                                                                           store="ou_list_store"
285                                                                           searchAttr="shortname"
286                                                                           ignoreCase="true"
287                                                                           required="true"
288                                                                         >
289                                                                                 <script type="dojo/method" event="onChange">
290 <![CDATA[
291                                                                                         if (current_ou && this.getValue()) this.store.setValue( current_ou, "parent_ou", this.getValue() );
292                                                                                         if ( this.store.getValue( current_ou, '_trueRoot' ) == 'true' ) this.required = false;
293                                                                                         else this.required = true;
294 ]]>
295                                                                                 </script>
296                                                                         </div>
297                                                                 </td>
298                                                         </tr>
299                                                         <tr>
300                                                                 <th>&conify.org_unit.editor_pane.opac_visible;</th>
301                                                                 <td>
302                                                                         <input
303                                                                           id="editor_pane_opac_visible"
304                                                                           jsId="editor_pane_opac_visible"
305                                                                           type="checkbox"
306                                                                           dojoType="dijit.form.CheckBox"
307                                                                           onChange="if (current_ou) ou_list_store.setValue( current_ou, 'opac_visible', this.checked ? 't' : 'f' );"
308                                                                         />
309                                                                 </td>
310                                                         </tr>
311                                                 </table>
312         
313                                                 <div dojoType="dijit.layout.ContentPane" orientation="horizontal" style="margin-bottom: 20px;">
314         
315                                                         <button jsId="save_ou_button" dojoType="dijit.form.Button" label="&conify.save_button.label;" onClick="save_org()">
316                                                                 <script type="dojo/connect" event="startup">
317                                                                         this.disabled = true;
318                                                                 </script>
319                                                         </button>
320         
321                                                         <button jsId="delete_ou_button" dojoType="dijit.form.Button" label="&conify.delete_button.label;">
322                                                                 <script type="dojo/connect" event="startup">
323                                                                         this.disabled = true;
324                                                                 </script>
325                                                                 <script type="dojo/connect" event="onClick">
326 <![CDATA[
327                                                                         var old_name = ou_list_store.getValue( current_ou, 'name' );
328
329                                                                         if (ou_list_store.getValue( current_ou, '_trueRoot' ) == 'true') {
330                                                                                 highlighter.editor_pane.red.play();
331                                                                                 status_update( dojo.string.substitute( aou_strings.ERROR_DELETING_LAST_AOU, [ou_list_store.getValue( current_ou, 'name' )] ) );
332                                                                                 return false;
333                                                                         }
334
335                                                                         if ( current_ou.children ) {
336                                                                                 var kids = current_ou.children;
337                                                                                 if (!dojo.isArray(kids)) kids = [kids];
338         
339                                                                                 var existing_kids = dojo.filter(
340                                                                                         kids,
341                                                                                         function(kid){ return kid.isdeleted[0] != 1 }
342                                                                                 );
343                                                                                 if ( existing_kids.length > 0) {
344                                                                                         highlighter.editor_pane.red.play();
345                                                                                         status_update( dojo.string.substitute( aou_strings.ERROR_ORPHANS, [ou_list_store.getValue( current_ou, 'name' ), existing_kids.length] ) );
346                                                                                         return;
347                                                                                 }
348                                                                         }
349         
350                                                                         if (confirm(dojo.string.substitute(aou_strings.CONFIRM_DELETE, [current_ou.name]))) {
351                                                                                 ou_list_store.setValue( current_ou, 'isdeleted', 1 );
352
353                                                                                 var modified_ou = new aou().fromStoreItem( current_ou );
354                                                                                 modified_ou.isdeleted( 1 );
355
356                                                                                 var objs = [];
357                                                                                 objs.push(modified_ou);
358                                                                                 if (!current_billing_address.isnew()) {
359                                                                                         current_billing_address.isdeleted( 1 );
360                                                                                         objs.push(current_billing_address);
361                                                                                 }
362
363                                                                                 if (!current_mailing_address.isnew()) {
364                                                                                         current_mailing_address.isdeleted( 1 );
365                                                                                         objs.push(current_mailing_address);
366                                                                                 }
367
368                                                                                 if (!current_holds_address.isnew()) {
369                                                                                         current_holds_address.isdeleted( 1 );
370                                                                                         objs.push(current_holds_address);
371                                                                                 }
372
373                                                                                 if (!current_ill_address.isnew()) {
374                                                                                         current_ill_address.isdeleted( 1 );
375                                                                                         objs.push(current_ill_address);
376                                                                                 }
377
378                                                                                 if (!current_ou_hoo.isnew()) {
379                                                                                         current_ou_hoo.isdeleted( 1 );
380                                                                                         objs.push(current_ou_hoo);
381                                                                                 }
382
383                                                                                 pcrud.apply(objs, {
384                                                                                         timeout : 10,
385                                                                                         onerror : function (r) {
386                                                                                                 highlighter.editor_pane.red.play();
387                                                                                                 status_update(dojo.string.substitute(aou_strings.ERROR_DELETING, [old_name]));
388                                                                                         },
389                                                                                         oncomplete : function (r) {
390                                                                                                 new_kid_button.disabled = true;
391                                                                                                 save_ou_button.disabled = true;
392                                                                                                 delete_ou_button.disabled = true;
393
394                                                                                                 var main_settings_fields = [ 'name', 'shortname', 'email', 'phone', 'ou_type', 'parent_ou' ];
395                                                                                                 for ( var i in main_settings_fields ) {
396                                                                                                         var field = main_settings_fields[i];
397                                                                                                         window["editor_pane_" + field].setValue( '' ); // unset the value
398                                                                                                         window["editor_pane_" + field].setDisplayedValue( '' ); // unset the value
399                                                                                                 }
400
401                                                                                                 ou_list_store.fetch({
402                                                                                                         query : { id : ou_list_store.getValue( current_ou, 'id' ) },
403                                                                                                         queryOptions : { deep : true },
404                                                                                                         onItem : function (item, req) { try { if (this.isItem( item )) this.deleteItem( item ); } catch (e) { } },
405                                                                                                         scope : ou_list_store
406                                                                                                 });
407
408                                                                                                 current_billing_address = null;
409                                                                                                 current_mailing_address = null;
410                                                                                                 current_holds_address = null;
411                                                                                                 current_ill_address = null;
412                                                                                                 current_ou_hoo = null;
413                                                                                                 current_ou = null;
414
415                                                                                                 highlighter.editor_pane.green.play();
416                                                                                                 status_update(dojo.string.substitute(aou_strings.STATUS_DELETED, [old_name]));
417                                                                                         }
418                                                                                 });
419                                                                         }
420 ]]>
421                                                                 </script>
422                                                         </button>
423         
424                                                 </div>
425         
426                                                 <button jsId="new_kid_button" dojoType="dijit.form.Button" label="&conify.new_kid_button.label;">
427                                                         <script type="dojo/connect" event="startup">
428                                                                 this.disabled = true;
429                                                         </script>
430                                                         <script type="dojo/connect" event="onClick">
431 <![CDATA[
432                                                                 var new_fm_obj = new aou().fromHash({
433                                                                         isnew                   : 1,
434                                                                         name                    : aou_strings.LABEL_NEW_BRANCH + virgin_ou_id,
435                                                                         opac_visible    : 'f',
436                                                                         shortname               : ou_list_store.getValue( current_ou, 'shortname' ) + '-NEW' + virgin_ou_id--,
437                                                                         parent_ou               : ou_list_store.getValue( current_ou, 'id' ),
438                                                                         ou_type                 : ou_list_store.getValue( current_ou, 'ou_type' )
439                                                                 });
440
441                                                                 pcrud.create( new_fm_obj, {
442                                                                         timeout : 10,
443                                                                         onerror : function (r) {
444                                                                                 highlighter.editor_pane.red.play();
445                                                                                 status_update( aou_strings.ERROR_CREATING_CHILD_AOU );
446                                                                         },
447                                                                         oncomplete : function (r, list) {
448                                                                                 
449                                                                                 if ( list.length ) {
450                                                                                         ou_list_store.newItem(
451                                                                                                 list[0].toHash(),
452                                                                                                 { parent : current_ou, attribute : 'children' }
453                                                                                         );
454                                                                                 } else {
455                                                                                         highlighter.editor_pane.red.play();
456                                                                                         status_update( aou_strings.ERROR_CREATING_CHILD_AOU );
457                                                                                 }
458                                                                         }
459                                                                 });
460         
461                                                                 highlighter.editor_pane.green.play();
462                                                                 highlighter.ou_tree.green.play();
463                                                                 status_update( dojo.string.substitute(aou_strings.SUCCESS_CREATING_CHILD_AOU, [ou_list_store.getValue( current_ou, 'name' )] ) );
464 ]]>
465                                                         </script>
466                                                 </button>
467         
468                                         </div>
469
470                                         <div id="hoo_pane" dojoType="dijit.layout.ContentPane" title="&conify.org_unit.hoo_pane.title;">
471                                                 <table class="tundra" style="margin:10px;">
472                                                         <tr><th/><th>&conify.org_unit.hoo_pane.open_time;</th><th>&conify.org_unit.hoo_pane.close_time;</th></tr>
473                                                         <tr><th>&conify.org_unit.hoo_pane.monday;</th>
474                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_0_open" onChange="current_ou_hoo.dow_0_open( this.getDisplayedValue() );"></span></td>
475                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_0_close" onChange="current_ou_hoo.dow_0_close( this.getDisplayedValue() );"></span></td>
476                                                                 <td><span dojoType="dijit.form.Button" label="&conify.org_unit.hoo_pane.closed;" onClick="dow_0_open.setValue( new Date('Tue Mar 25 2008 00:00:00') ); dow_0_close.setValue( new Date('Tue Mar 25 2008 00:00:00') );"></span></td>
477                                                         </tr>
478                                                         <tr><th>&conify.org_unit.hoo_pane.tuesday;</th>
479                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_1_open" onChange="current_ou_hoo.dow_1_open( this.getDisplayedValue() );"></span></td>
480                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_1_close" onChange="current_ou_hoo.dow_1_close( this.getDisplayedValue() );"></span></td>
481                                                                 <td><span dojoType="dijit.form.Button" label="&conify.org_unit.hoo_pane.closed;" onClick="dow_1_open.setValue( new Date('Tue Mar 25 2008 00:00:00') ); dow_1_close.setValue( new Date('Tue Mar 25 2008 00:00:00') );"></span></td>
482                                                         </tr>
483                                                         <tr><th>&conify.org_unit.hoo_pane.wednesday;</th>
484                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_2_open" onChange="current_ou_hoo.dow_2_open( this.getDisplayedValue() );"></span></td>
485                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_2_close" onChange="current_ou_hoo.dow_2_close( this.getDisplayedValue() );"></span></td>
486                                                                 <td><span dojoType="dijit.form.Button" label="&conify.org_unit.hoo_pane.closed;" onClick="dow_2_open.setValue( new Date('Tue Mar 25 2008 00:00:00') ); dow_2_close.setValue( new Date('Tue Mar 25 2008 00:00:00') );"></span></td>
487                                                         </tr>
488                                                         <tr><th>&conify.org_unit.hoo_pane.thursday;</th>
489                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_3_open" onChange="current_ou_hoo.dow_3_open( this.getDisplayedValue() );"></span></td>
490                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_3_close" onChange="current_ou_hoo.dow_3_close( this.getDisplayedValue() );"></span></td>
491                                                                 <td><span dojoType="dijit.form.Button" label="&conify.org_unit.hoo_pane.closed;" onClick="dow_3_open.setValue( new Date('Tue Mar 25 2008 00:00:00') ); dow_3_close.setValue( new Date('Tue Mar 25 2008 00:00:00') );"></span></td>
492                                                         </tr>
493                                                         <tr><th>&conify.org_unit.hoo_pane.friday;</th>
494                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_4_open" onChange="current_ou_hoo.dow_4_open( this.getDisplayedValue() );"></span></td>
495                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_4_close" onChange="current_ou_hoo.dow_4_close( this.getDisplayedValue() );"></span></td>
496                                                                 <td><span dojoType="dijit.form.Button" label="&conify.org_unit.hoo_pane.closed;" onClick="dow_4_open.setValue( new Date('Tue Mar 25 2008 00:00:00') ); dow_4_close.setValue( new Date('Tue Mar 25 2008 00:00:00') );"></span></td>
497                                                         </tr>
498                                                         <tr><th>&conify.org_unit.hoo_pane.saturday;</th>
499                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_5_open" onChange="current_ou_hoo.dow_5_open( this.getDisplayedValue() );"></span></td>
500                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_5_close" onChange="current_ou_hoo.dow_5_close( this.getDisplayedValue() );"></span></td>
501                                                                 <td><span dojoType="dijit.form.Button" label="&conify.org_unit.hoo_pane.closed;" onClick="dow_5_open.setValue( new Date('Tue Mar 25 2008 00:00:00') ); dow_5_close.setValue( new Date('Tue Mar 25 2008 00:00:00') );"></span></td>
502                                                         </tr>
503                                                         <tr><th>&conify.org_unit.hoo_pane.sunday;</th>
504                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_6_open" onChange="current_ou_hoo.dow_6_open( this.getDisplayedValue() );"></span></td>
505                                                                 <td><span dojoType="dijit.form.TimeTextBox" style="width:8em;" jsId="dow_6_close" onChange="current_ou_hoo.dow_6_close( this.getDisplayedValue() );"></span></td>
506                                                                 <td><span dojoType="dijit.form.Button" label="&conify.org_unit.hoo_pane.closed;" onClick="dow_6_open.setValue( new Date('Tue Mar 25 2008 00:00:00') ); dow_6_close.setValue( new Date('Tue Mar 25 2008 00:00:00') );"></span></td>
507                                                         </tr>
508                                                 </table>
509         
510                                                 <button jsId="save_hoo_button" dojoType="dijit.form.Button" label="&conify.save_button.label;">
511                             <script type="dojo/connect" event="startup">
512                                 this.disabled = true;
513                             </script>
514                                                         <script type="dojo/connect" event="onClick">
515 <![CDATA[
516                                 if (!current_ou_hoo.isnew()) {
517                                     current_ou_hoo.ischanged( 1 );
518                                 }
519
520                                 pcrud.apply( current_ou_hoo, {
521                                     timeout : 10,
522                                     onerror : function (r) {
523                                         highlighter.hoo_pane.red.play();
524                                         status_update( dojo.string.substitute( aou_strings.ERROR_SAVING_HOO, [ou_list_store.getValue( current_ou, 'name' )] ) );
525                                     },
526                                     oncomplete : function (r) {
527                                         current_ou_hoo.isnew( 0 );
528                                         current_ou_hoo.ischanged( 0 );
529                                         highlighter.hoo_pane.green.play();
530                                         status_update( dojo.string.substitute( aou_strings.SUCCESS_SAVING_HOO, [ou_list_store.getValue( current_ou, 'name' )] ) );
531                                     },
532                                 });
533 ]]>
534                                                         </script>
535                                                 </button>
536         
537                                         </div>
538         
539                                         <div id="addresses_pane" dojoType="dijit.layout.ContentPane" title="&conify.org_unit.addresses_pane.title;">
540                                                 
541                                                 <div id="billing_address_pane" dojoType="dijit.layout.TabContainer" style="margin-top:10px">
542         
543                                                         <script type="dojo/method">
544                                                                 current_billing_address = null;
545                                                                 current_mailing_address = null;
546                                                                 current_holds_address = null;
547                                                                 current_ill_address = null;
548                                                         </script>
549         
550                                                         <div id="billing_address" dojoType="dijit.layout.ContentPane" title="&conify.org_unit.addresses_pane.physical.title;">
551                                                                 <table class="tundra" style="margin:10px;">
552                                                                         <tr>
553                                                                                 <th>&conify.org_unit.addresses_pane.type;</th>
554                                                                                 <td colspan="3">
555                                                                                         <span jsId="billing_addr_type" style="width:100%;" dojoType="dijit.form.TextBox" onChange="current_billing_address.address_type( this.getValue() )"></span>
556                                                                                 </td>
557                                                                                 <th>&conify.org_unit.addresses_pane.valid;</th><td>
558                                                                                         <input
559                                                                                           type="checkbox"
560                                                                                           jsId="billing_addr_valid"
561                                                                                           dojoType="dijit.form.CheckBox"
562                                                                                           value='t'
563                                                                                           onChange="if (current_billing_address) current_billing_address.valid( this.checked ? 't' : 'f' );"
564                                                                                         />
565                                                                                 </td>
566                                                                         </tr>
567                                                                         <tr>
568                                                                                 <th>&conify.org_unit.addresses_pane.street1;</th><td colspan="5"><span jsId="billing_addr_street1" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_billing_address.street1( this.getValue() )" required="true"></span></td>
569                                                                         </tr>
570                                                                         <tr>
571                                                                                 <th>&conify.org_unit.addresses_pane.street2;</th><td colspan="5"><span jsId="billing_addr_street2" style="width:100%;" dojoType="dijit.form.TextBox" onChange="current_billing_address.street2( this.getValue() )"></span></td>
572                                                                         </tr>
573                                                                         <tr>
574                                                                                 <th>&conify.org_unit.addresses_pane.city;</th><td><span jsId="billing_addr_city" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_billing_address.city( this.getValue() )" required="true"></span></td>
575                                                                                 <th>&conify.org_unit.addresses_pane.state;</th><td><span jsId="billing_addr_state" style="width:100%;" dojoType="dijit.form.ValidationTextBox" size="2" maxSize="2" uppercase="true" onChange="current_billing_address.state( this.getValue() )" required="true"></span></td>
576                                                                                 <th>&conify.org_unit.addresses_pane.zip;</th><td><span jsId="billing_addr_post_code" style="width:100%;" dojoType="dijit.form.ValidationTextBox" size="10" maxSize="10" regExp="^\d{5}(?:-\d{4})?$" uppercase="true" onChange="current_billing_address.post_code( this.getValue() )" required="true"></span></td>
577                                                                         </tr>
578                                                                         <tr>
579                                                                                 <th>&conify.org_unit.addresses_pane.country;</th><td colspan="2"><span jsId="billing_addr_country" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_billing_address.country( this.getValue() )" required="true"></span></td>
580                                                                                 <th>&conify.org_unit.addresses_pane.county;</th><td colspan="2"><span jsId="billing_addr_county" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_billing_address.county( this.getValue() )" required="true"></span></td>
581                                                                         </tr>
582                                                                         <tr>
583                                                                                 <th>&conify.org_unit.addresses_pane.san;</th><td colspan="2"><span jsId="billing_addr_san" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_billing_address.san( this.getValue() )" required="true"></span></td>
584                                                                         </tr>
585                                                                 </table>
586         
587                                                                 <button jsId="save_billing_address" dojoType="dijit.form.Button" label="&conify.save_button.label;">
588                                                                         <script type="dojo/connect" event="startup">
589                                                                                 this.disabled = true;
590                                                                         </script>
591                                                                         <script type="dojo/connect" event="onClick">
592 <![CDATA[
593                                         if (!current_billing_address.isnew()) {
594                                             current_billing_address.ischanged( 1 );
595                                         }
596
597                                         pcrud.apply( current_billing_address, {
598                                             timeout : 10,
599                                             onerror : function (r) {
600                                                 highlighter.addresses_pane.red.play();
601                                                 status_update( dojo.string.substitute( aou_strings.ERROR_SAVING_PHYSICAL, [ou_list_store.getValue( current_ou, 'name' )] ) );
602                                             },
603                                             oncomplete : function (r, list) {
604                                                 if (list[0] && (current_billing_address.isnew() == 1)) {
605                                                     current_billing_address = list[0];
606
607                                                     ou_list_store.setValue( current_ou, "billing_address", current_billing_address.id());
608                                                     save_org();
609                                                 }
610                                                 current_billing_address.isnew( 0 );
611                                                 current_billing_address.ischanged( 0 );
612                                                 highlighter.addresses_pane.green.play();
613                                                 status_update( dojo.string.substitute( aou_strings.SUCCESS_SAVING_PHYSICAL, [ou_list_store.getValue( current_ou, 'name' )] ) );
614                                             },
615                                         });
616 ]]>
617                                                                         </script>
618                                                                 </button>
619                                                         </div>
620
621                                                         <div id="holds_address" dojoType="dijit.layout.ContentPane" title="&conify.org_unit.addresses_pane.holds.title;">
622                                                                 <table class="tundra" style="margin:10px;">
623                                                                         <tr>
624                                                                                 <th>&conify.org_unit.addresses_pane.type;</th><td colspan="3"><span jsId="holds_addr_type" style="width:100%;" dojoType="dijit.form.TextBox" onChange="current_holds_address.address_type( this.getValue() )"></span></td>
625                                                                                 <th>&conify.org_unit.addresses_pane.valid;</th><td>
626                                                                                         <input
627                                                                                           type="checkbox"
628                                                                                           jsId="holds_addr_valid"
629                                                                                           dojoType="dijit.form.CheckBox"
630                                                                                           value='t'
631                                                                                           onChange="if (current_holds_address) current_holds_address.valid( this.checked ? 't' : 'f' );"
632                                                                                         />
633                                                                                 </td>
634                                                                         </tr>
635                                                                         <tr>
636                                                                                 <th>&conify.org_unit.addresses_pane.street1;</th><td colspan="5"><span jsId="holds_addr_street1" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_holds_address.street1( this.getValue() )" required="true"></span></td>
637                                                                         </tr>
638                                                                         <tr>
639                                                                                 <th>&conify.org_unit.addresses_pane.street2;</th><td colspan="5"><span jsId="holds_addr_street2" style="width:100%;" dojoType="dijit.form.TextBox" onChange="current_holds_address.street2( this.getValue() )"></span></td>
640                                                                         </tr>
641                                                                         <tr>
642                                                                                 <th>&conify.org_unit.addresses_pane.city;</th><td><span jsId="holds_addr_city" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_holds_address.city( this.getValue() )" required="true"></span></td>
643                                                                                 <th>&conify.org_unit.addresses_pane.state;</th><td><span jsId="holds_addr_state" style="width:100%;" dojoType="dijit.form.ValidationTextBox" size="2" maxSize="2" uppercase="true" onChange="current_holds_address.state( this.getValue() )" required="true"></span></td>
644                                                                                 <th>&conify.org_unit.addresses_pane.zip;</th><td><span jsId="holds_addr_post_code" style="width:100%;" dojoType="dijit.form.ValidationTextBox" size="10" maxSize="10" regExp="^\d{5}(?:-\d{4})?$" uppercase="true" onChange="current_holds_address.post_code( this.getValue() )" required="true"></span></td>
645                                                                         </tr>
646                                                                         <tr>
647                                                                                 <th>&conify.org_unit.addresses_pane.country;</th><td colspan="2"><span jsId="holds_addr_country" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_holds_address.country( this.getValue() )" required="true"></span></td>
648                                                                                 <th>&conify.org_unit.addresses_pane.county;</th><td colspan="2"><span jsId="holds_addr_county" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_holds_address.county( this.getValue() )" required="true"></span></td>
649                                                                         </tr>
650                                                                         <tr>
651                                                                                 <th>&conify.org_unit.addresses_pane.san;</th><td colspan="2"><span jsId="holds_addr_san" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_holds_address.san( this.getValue() )" required="true"></span></td>
652                                                                         </tr>
653                                                                 </table>
654         
655                                                                 <button jsId="save_holds_address" dojoType="dijit.form.Button" label="&conify.save_button.label;">
656                                                                         <script type="dojo/connect" event="startup">
657                                                                                 this.disabled = true;
658                                                                         </script>
659                                                                         <script type="dojo/connect" event="onClick">
660 <![CDATA[
661                                         if (!current_holds_address.isnew()) {
662                                             current_holds_address.ischanged( 1 );
663                                         }
664
665                                         pcrud.apply( current_holds_address, {
666                                             timeout : 10,
667                                             onerror : function (r) {
668                                                 highlighter.addresses_pane.red.play();
669                                                 status_update( dojo.string.substitute( aou_strings.ERROR_SAVING_HOLDS, [ou_list_store.getValue( current_ou, 'name' )] ) );
670                                             },
671                                             oncomplete : function (r, list) {
672                                                 if (list[0] && (current_holds_address.isnew() == 1)) {
673                                                     current_holds_address = list[0];
674
675                                                     ou_list_store.setValue( current_ou, "holds_address", current_holds_address.id());
676                                                     save_org();
677                                                 }
678                                                 current_holds_address.isnew( 0 );
679                                                 current_holds_address.ischanged( 0 );
680                                                 highlighter.addresses_pane.green.play();
681                                                 status_update( dojo.string.substitute( aou_strings.SUCCESS_SAVING_HOLDS, [ou_list_store.getValue( current_ou, 'name' )] ) );
682                                             },
683                                         });
684 ]]>
685                                                                         </script>
686                                                                 </button>
687                                                         </div>
688
689                                                         <div id="mailing_address" dojoType="dijit.layout.ContentPane" title="&conify.org_unit.addresses_pane.mailing.title;">
690                                                                 <table class="tundra" style="margin:10px;">
691                                                                         <tr>
692                                                                                 <th>&conify.org_unit.addresses_pane.type;</th><td colspan="3"><span jsId="mailing_addr_type" style="width:100%;" dojoType="dijit.form.TextBox" onChange="current_mailing_address.address_type( this.getValue() )"></span></td>
693                                                                                 <th>&conify.org_unit.addresses_pane.valid;</th><td>
694                                                                                         <input
695                                                                                           type="checkbox"
696                                                                                           jsId="mailing_addr_valid"
697                                                                                           dojoType="dijit.form.CheckBox"
698                                                                                           onChange="if (current_mailing_address) current_mailing_address.valid( this.checked ? 't' : 'f' );"
699                                                                                         />
700                                                                                 </td>
701                                                                         </tr>
702                                                                         <tr>
703                                                                                 <th>&conify.org_unit.addresses_pane.street1;</th><td colspan="5"><span jsId="mailing_addr_street1" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_mailing_address.street1( this.getValue() )" required="true"></span></td>
704                                                                         </tr>
705                                                                         <tr>
706                                                                                 <th>&conify.org_unit.addresses_pane.street2;</th><td colspan="5"><span jsId="mailing_addr_street2" style="width:100%;" dojoType="dijit.form.TextBox" onChange="current_mailing_address.street2( this.getValue() )"></span></td>
707                                                                         </tr>
708                                                                         <tr>
709                                                                                 <th>&conify.org_unit.addresses_pane.city;</th><td><span jsId="mailing_addr_city" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_mailing_address.city( this.getValue() )" required="true"></span></td>
710                                                                                 <th>&conify.org_unit.addresses_pane.state;</th><td><span jsId="mailing_addr_state" style="width:100%;" dojoType="dijit.form.ValidationTextBox" size="2" maxSize="2" uppercase="true" onChange="current_mailing_address.state( this.getValue() )" required="true"></span></td>
711                                                                                 <th>&conify.org_unit.addresses_pane.zip;</th><td><span jsId="mailing_addr_post_code" style="width:100%;" dojoType="dijit.form.ValidationTextBox" size="10" maxSize="10" regExp="^\d{5}(?:-\d{4})?$" uppercase="true" onChange="current_mailing_address.post_code( this.getValue() )" required="true"></span></td>
712                                                                         </tr>
713                                                                         <tr>
714                                                                                 <th>&conify.org_unit.addresses_pane.country;</th><td colspan="2"><span jsId="mailing_addr_country" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_mailing_address.country( this.getValue() )" required="true"></span></td>
715                                                                                 <th>&conify.org_unit.addresses_pane.county;</th><td colspan="2"><span jsId="mailing_addr_county" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_mailing_address.county( this.getValue() )" required="true"></span></td>
716                                                                         </tr>
717                                                                         <tr>
718                                                                                 <th>&conify.org_unit.addresses_pane.san;</th><td colspan="2"><span jsId="mailing_addr_san" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_mailing_address.san( this.getValue() )" required="true"></span></td>
719                                                                         </tr>
720                                                                 </table>
721         
722                                                                 <button jsId="save_mailing_address" dojoType="dijit.form.Button" label="&conify.save_button.label;">
723                                                                         <script type="dojo/connect" event="startup">
724                                                                                 this.disabled = true;
725                                                                         </script>
726                                                                         <script type="dojo/connect" event="onClick">
727 <![CDATA[
728                                         if (!current_mailing_address.isnew()) {
729                                             current_mailing_address.ischanged( 1 );
730                                         }
731
732                                         pcrud.apply( current_mailing_address, {
733                                             timeout : 10,
734                                             onerror : function (r) {
735                                                 highlighter.addresses_pane.red.play();
736                                                 status_update( dojo.string.substitute( aou_strings.ERROR_SAVING_MAILING, [ou_list_store.getValue( current_ou, 'name' )] ) );
737                                             },
738                                             oncomplete : function (r, list) {
739                                                 if (list[0] && (current_mailing_address.isnew() == 1)) {
740                                                     current_mailing_address = list[0];
741
742                                                     ou_list_store.setValue( current_ou, "mailing_address", current_mailing_address.id());
743                                                     save_org();
744                                                 }
745                                                 current_mailing_address.isnew( 0 );
746                                                 current_mailing_address.ischanged( 0 );
747                                                 highlighter.addresses_pane.green.play();
748                                                 status_update( dojo.string.substitute( aou_strings.SUCCESS_SAVING_MAILING, [ou_list_store.getValue( current_ou, 'name' )] ) );
749                                             },
750                                         });
751 ]]>
752                                                                         </script>
753                                                                 </button>
754                                                         </div>
755
756                                                         <div id="ill_address" dojoType="dijit.layout.ContentPane" title="&conify.org_unit.addresses_pane.ill.title;">
757                                                                 <table class="tundra" style="margin:10px;">
758                                                                         <tr>
759                                                                                 <th>&conify.org_unit.addresses_pane.type;</th><td colspan="3"><span jsId="ill_addr_type" style="width:100%;" dojoType="dijit.form.TextBox" onChange="current_ill_address.address_type( this.getValue() )"></span></td>
760                                                                                 <th>&conify.org_unit.addresses_pane.valid;</th><td>
761                                                                                         <input
762                                                                                           type="checkbox"
763                                                                                           jsId="ill_addr_valid"
764                                                                                           dojoType="dijit.form.CheckBox"
765                                                                                           onChange="if (current_ill_address) current_ill_address.valid( this.checked ? 't' : 'f' );"
766                                                                                         />
767                                                                                 </td>
768                                                                         </tr>
769                                                                         <tr>
770                                                                                 <th>&conify.org_unit.addresses_pane.street1;</th><td colspan="5"><span jsId="ill_addr_street1" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_ill_address.street1( this.getValue() )" required="true"></span></td>
771                                                                         </tr>
772                                                                         <tr>
773                                                                                 <th>&conify.org_unit.addresses_pane.street2;</th><td colspan="5"><span jsId="ill_addr_street2" style="width:100%;" dojoType="dijit.form.TextBox" onChange="current_ill_address.street2( this.getValue() )"></span></td>
774                                                                         </tr>
775                                                                         <tr>
776                                                                                 <th>&conify.org_unit.addresses_pane.city;</th><td><span jsId="ill_addr_city" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_ill_address.city( this.getValue() )" required="true"></span></td>
777                                                                                 <th>&conify.org_unit.addresses_pane.state;</th><td><span jsId="ill_addr_state" style="width:100%;" dojoType="dijit.form.ValidationTextBox" size="2" maxSize="2" uppercase="true" onChange="current_ill_address.state( this.getValue() )" required="true"></span></td>
778                                                                                 <th>&conify.org_unit.addresses_pane.zip;</th><td><span jsId="ill_addr_post_code" style="width:100%;" dojoType="dijit.form.ValidationTextBox" size="10" maxSize="10" regExp="^\d{5}(?:-\d{4})?$" uppercase="true" onChange="current_ill_address.post_code( this.getValue() )" required="true"></span></td>
779                                                                         </tr>
780                                                                         <tr>
781                                                                                 <th>&conify.org_unit.addresses_pane.country;</th><td colspan="2"><span jsId="ill_addr_country" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_ill_address.country( this.getValue() )" required="true"></span></td>
782                                                                                 <th>&conify.org_unit.addresses_pane.county;</th><td colspan="2"><span jsId="ill_addr_county" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_ill_address.county( this.getValue() )" required="true"></span></td>
783                                                                         </tr>
784                                                                         <tr>
785                                                                                 <th>&conify.org_unit.addresses_pane.san;</th><td colspan="2"><span jsId="ill_addr_san" style="width:100%;" dojoType="dijit.form.ValidationTextBox" onChange="current_ill_address.san( this.getValue() )" required="true"></span></td>
786                                                                         </tr>
787                                                                 </table>
788         
789                                                                 <button jsId="save_ill_address" dojoType="dijit.form.Button" label="&conify.save_button.label;">
790                                                                         <script type="dojo/connect" event="startup">
791                                                                                 this.disabled = true;
792                                                                         </script>
793                                                                         <script type="dojo/connect" event="onClick">
794 <![CDATA[
795                                         if (!current_ill_address.isnew()) {
796                                             current_ill_address.ischanged( 1 );
797                                         }
798
799                                         pcrud.apply( current_ill_address, {
800                                             timeout : 10,
801                                             onerror : function (r) {
802                                                 highlighter.addresses_pane.red.play();
803                                                 status_update( dojo.string.substitute( aou_strings.ERROR_SAVING_ILL, [ou_list_store.getValue( current_ou, 'name' )] ) );
804                                             },
805                                             oncomplete : function (r, list) {
806                                                 if (list[0] && (current_ill_address.isnew() == 1)) {
807                                                     current_ill_address = list[0];
808
809                                                     ou_list_store.setValue( current_ou, "ill_address", current_ill_address.id());
810                                                     save_org();
811                                                 }
812                                                 current_ill_address.isnew( 0 );
813                                                 current_ill_address.ischanged( 0 );
814                                                 highlighter.addresses_pane.green.play();
815                                                 status_update( dojo.string.substitute( aou_strings.SUCCESS_SAVING_ILL, [ou_list_store.getValue( current_ou, 'name' )] ) );
816                                             },
817                                         });
818 ]]>
819                                                                         </script>
820                                                                 </button>
821                                                         </div>
822                                                 </div>
823                                         </div>
824                                 </div>
825                         </div>
826                 </div>
827
828                 <div id="status_bar"><span style="font-weight: bold; margin: 5px; margin-right: 10px;">&conify.org_unit.status_bar;</span><span id="current_ou_name"></span></div>
829         </body>
830 </html>