]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/barcode_entry.xul
Replace deprecated javascript escape() with encodeURIComponent()
[Evergreen.git] / Open-ILS / xul / staff_client / server / patron / barcode_entry.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Retrieve Patron By Barcode -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- STYLESHEETS -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
9
10 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
11 <!-- LOCALIZATION -->
12 <!DOCTYPE window PUBLIC "" ""[
13     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
14 ]>
15
16 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
17 <!-- OVERLAYS -->
18 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
19
20 <window id="patron_barcode_entry_win" 
21     onload="try { my_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
22     onunload="try { my_cleanup(); persist_helper_cleanup(); } catch(E) { alert(E); }"
23     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
24
25     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
26     <!-- BEHAVIOR -->
27         <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};</script>
28         <scripts id="openils_util_scripts"/>
29
30     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
31     <script>
32     <![CDATA[
33         function $(id) { return document.getElementById(id); }
34         
35         function my_init() {
36             try {
37             if (typeof JSAN == 'undefined') { throw( $("commonStrings").getString('common.jsan.missing') ); }
38                 JSAN.errorLevel = "die"; // none, warn, or die
39                 JSAN.addRepository('/xul/server/');
40                 JSAN.use('util.error'); g.error = new util.error();
41                 g.error.sdump('D_TRACE','my_init() for patron/barcode_entry.xul');
42
43                 JSAN.use('OpenILS.data'); g.data = new OpenILS.data(); g.data.init({'via':'stash'});
44
45                 var tb = document.getElementById('barcode_tb');
46                 window.barcode_entry_event_listeners = new EventListenerList();
47                 window.barcode_entry_event_listeners.add(tb, 
48                     'keypress',
49                     function(ev) {
50                         if (ev.keyCode == 13 || ev.keyCode == 77) {
51                             setTimeout(
52                                 function() {
53                                     submit();
54                                 }, 0
55                             );
56                         }
57                     },
58                     false
59                 );
60                 tb.focus();
61     
62                 if (typeof window.xulG == 'object' && typeof window.xulG.set_tab_name == 'function') {
63                     if (xul_param('perm_editor')) {
64                         try { window.xulG.set_tab_name($("patronStrings").getString('staff.patron.barcode_entry.user_permission_editor')); } catch(E) { alert(E); }
65                     } else {
66                         try { window.xulG.set_tab_name($("patronStrings").getString('staff.patron.barcode_entry.check_out')); } catch(E) { alert(E); }
67                     }
68                 }
69
70                 if (xul_param('error')) { 
71                     var error = xul_param('error');
72                     alert(error);
73                 }
74
75             } catch(E) {
76                 var err_msg = $("commonStrings").getFormattedString('common.exception', ['patron/barcode_entry.xul', E]);
77                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); }
78                 alert(err_msg);
79             }
80         }
81
82         function my_cleanup() {
83             try {
84                 window.barcode_entry_event_listeners.removeAll();
85             } catch(E) {
86                 var err_msg = $("commonStrings").getFormattedString('common.exception', ['patron/barcode_entry.xul', E]);
87                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); }
88                 alert(err_msg);
89             }
90         }
91
92         function submit() {
93             var tb;
94             try {
95                 JSAN.use('util.sound'); var sound = new util.sound();
96                 tb = document.getElementById('barcode_tb');
97                 var barcode = tb.value;
98
99                 barcode = String( barcode ).replace( /\s+/g, '' );
100
101                 if (!barcode) { sound.bad(); add_msg($("patronStrings").getString('staff.patron.barcode_entry.no_barcode')); tb.select(); tb.focus(); return; }
102
103                 JSAN.use('util.network'); var net = new util.network();
104
105                 tb.disabled = true;
106                 document.getElementById('progress').setAttribute('hidden','false');
107                 // Auto-complete the barcode, users only. Handily, looks up all we need to know in the process.
108                 var barcode_object = xulG.get_barcode(window, 'actor', barcode);
109                 document.getElementById('progress').setAttribute('hidden','true');
110                 tb.disabled = false; tb.select(); tb.focus(); ;
111                 // user_false means the user said "None of the above", so abort without further prompts/actions
112                 if(barcode_object == "user_false") return;
113                 if(barcode_object == false) {
114                     // Boolean false means the barcode was not found, and the user wasn't prompted.
115                     sound.bad();
116                     add_msg($("patronStrings").getFormattedString('staff.patron.barcode_entry.barcode_not_found', [barcode]));
117                     return;
118                 }
119                 else if(typeof barcode_object.ilsevent != 'undefined') {
120                     // Getting an ilsevent error otherwise means something, likely permissions issues, went wrong
121                     sound.bad();
122                     add_msg($("patronStrings").getFormattedString('staff.patron.barcode_entry.barcode_retrieval_problem', [barcode, js2JSON(barcode_object)]));
123                     return;
124                 }
125
126                 if (g.data.user_org_unit_opt_in_enabled) {
127                     var r = net.simple_request('USER_ORG_UNIT_OPT_IN_CHECK',[ ses(), barcode_object.id ]);
128                     if (typeof r.ilsevent != 'undefined') {
129                         throw(r);
130                     } else {
131
132                         if (r == 0) {
133
134                             JSAN.use('patron.util');
135                             var parts;
136                             // Handily, if the user was prompted, we should already have the user's name information returned from autocomplete
137                             // Use it if there, as it saves us a network call.
138                             if(barcode_object.request_data) parts = barcode_object.request_data;
139                             // Otherwise, make the network call
140                             else parts = patron.util.retrieve_name_via_id( ses(), barcode_object.id );
141     
142                             if (0 != g.error.yns_alert(
143                                     $("patronStrings").getFormattedString('staff.patron.barcode_entry.consent_from_patron',
144                                         [parts[0], parts[1] + (parts[2] ? ' ' + parts[2] : ''), g.data.hash.aou[ parts[3] ].name(), g.data.hash.aou[ parts[3] ].shortname()]),
145                                     $("patronStrings").getString('staff.patron.barcode_entry.patron_consent_title'),
146                                     $("patronStrings").getString('staff.patron.barcode_entry.patron_consent_accept'),
147                                     $("patronStrings").getString('staff.patron.barcode_entry.patron_consent_deny'), null,
148                                     $("patronStrings").getString('staff.patron.barcode_entry.patron_consent_confirm')
149                                 )
150                             ) {
151                                 tb.select(); tb.focus();
152                                 return;
153                             } else {
154                                 var c = net.simple_request('USER_ORG_UNIT_OPT_IN_CREATE',[ ses(), barcode_object.id ]);
155                                 if (typeof c.ilsevent != 'undefined') throw(r);
156                             }
157                         }
158     
159                         sound.good();
160                         spawn(barcode_object.id, barcode_object.barcode);
161                     }
162                 } else {
163                     sound.good();
164                     spawn(barcode_object.id, barcode_object.barcode);
165                 }
166             } catch(E) {
167                 tb.select(); tb.focus();
168                 g.error.standard_unexpected_error_alert('barcode_entry.xul',E);
169             }
170         }
171
172         function add_msg(text) {
173             var x = document.getElementById('status');
174             var d = document.createElement('description');
175             x.appendChild(d);
176             d.appendChild( document.createTextNode( text ) );
177             d.setAttribute('style','color: red');
178         }
179
180         function spawn(id, barcode) {
181             if (xul_param('perm_editor')) { spawn_perm_editor(id); } else { spawn_checkout(barcode); }
182         }
183
184         function spawn_checkout(barcode) {
185             try {
186                 var horizontal_interface = String( g.data.hash.aous['ui.circ.patron_summary.horizontal'] ) == 'true';
187                 var loc = xulG.url_prefix( horizontal_interface ? 'XUL_PATRON_HORIZ_DISPLAY' : 'XUL_PATRON_DISPLAY' );
188                 if (typeof window.xulG == 'object' && typeof window.xulG.set_tab == 'function') {
189                     window.xulG.set_tab( loc, {}, { 'barcode' : barcode } );
190                 } else {
191                     location.href = loc + '?barcode=' + window.encodeURIComponent(barcode);
192                 }
193             } catch(E) {
194                 g.error.standard_unexpected_error_alert($("patronStrings").getString('staff.patron.barcode_entry.patron_display_error'),E);
195             }
196         }
197
198         function spawn_perm_editor(id) {
199             try {
200                 var loc = urls.XUL_USER_PERM_EDITOR + '?ses=' + window.encodeURIComponent(ses()) + '&usr=' + id;
201                 if (typeof window.xulG == 'object' && typeof window.xulG.set_tab == 'function') {
202                     window.xulG.set_tab( loc, {}, {} );
203                 } else {
204                     location.href = loc;
205                 }
206             } catch(E) {
207                 g.error.standard_unexpected_error_alert($("patronStrings").getString('staff.patron.barcode_entry.user_perm_display_error'),E);
208             }
209         }
210
211
212         function default_focus() { try { setTimeout( function() { document.getElementById('barcode_tb').focus(); }, 0); } catch(E) {} }
213     ]]>
214     </script>
215     
216     <messagecatalog id="patronStrings" src="/xul/server/locale/<!--#echo var='locale'-->/patron.properties" />
217
218     <vbox flex="1" class="my_overflow">
219         <groupbox orient="vertical" flex="1">
220             <caption label="&staff.pat.barcode_entry.retrieve_patron.label;" />
221             <hbox>
222                 <label value="&staff.pat.barcode_entry.barcode.label;" accesskey="&staff.pat.barcode_entry.barcode.accesskey;" control="barcode_tb"/>
223                 <textbox id="barcode_tb"  context="clipboard"/>
224                 <button label="&staff.pat.barcode_entry.submit_btn.label;" accesskey="&staff.pat.barcode_entry.submit_btn.accesskey;" oncommand="submit();"/>
225             </hbox>
226             <label value="&staff.pat.barcode_entry.retrieving.label;" style="color: green" id="progress" hidden="true"/>
227             <vbox id="status">
228             </vbox>
229         </groupbox>
230     </vbox>
231
232 </window>
233