]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/barcode_entry.xul
UI for user-org-opt-in feature
[working/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="chrome://open_ils_staff_client/skin/global.css" type="text/css"?>
9 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
10
11 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
12 <!-- LOCALIZATION -->
13 <!DOCTYPE window PUBLIC "" ""[
14         <!--#include virtual="/opac/locale/en-US/lang.dtd"-->
15 ]>
16
17 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
18 <!-- OVERLAYS -->
19 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
20
21 <window id="patron_barcode_entry_win" 
22         onload="try { my_init(); font_helper(); } 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 my_init() {
34                         try {
35                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
36                                 if (typeof JSAN == 'undefined') { throw( "The JSAN library object is missing."); }
37                                 JSAN.errorLevel = "die"; // none, warn, or die
38                                 JSAN.addRepository('/xul/server/');
39                                 JSAN.use('util.error'); g.error = new util.error();
40                                 g.error.sdump('D_TRACE','my_init() for patron/barcode_entry.xul');
41
42                 JSAN.use('OpenILS.data'); g.data = new OpenILS.data(); g.data.init({'via':'stash'});
43
44                                 var tb = document.getElementById('barcode_tb');
45                                 tb.addEventListener(
46                                         'keypress',
47                                         function(ev) {
48                                                 if (ev.keyCode == 13 || ev.keyCode == 77) {
49                                                         setTimeout(
50                                                                 function() {
51                                                                         submit();
52                                                                 }, 0
53                                                         );
54                                                 }
55                                         },
56                                         false
57                                 );
58                                 tb.focus();
59         
60                                 if (typeof window.xulG == 'object' && typeof window.xulG.set_tab_name == 'function') {
61                                         try { window.xulG.set_tab_name('Check Out'); } catch(E) { alert(E); }
62                                 }
63
64                                 if (xul_param('error')) { 
65                                         var error = xul_param('error');
66                                         alert(error);
67                                 }
68
69                         } catch(E) {
70                                 var err_msg = "!! This software has encountered an error.  Please tell your friendly " +
71                                         "system administrator or software developer the following:\n" + E + '\n';
72                                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); }
73                                 alert(err_msg);
74                         }
75                 }
76
77                 function submit() {
78                         var tb;
79                         try {
80                                 JSAN.use('util.sound'); var sound = new util.sound();
81                                 tb = document.getElementById('barcode_tb');
82                                 var barcode = tb.value;
83
84                                 barcode = String( barcode ).replace( /\s+/g, '' );
85
86                                 if (!barcode) { sound.bad(); add_msg('No barcode entered.'); tb.select(); tb.focus(); return; }
87
88                                 JSAN.use('util.network'); var net = new util.network();
89
90                                 tb.disabled = true;
91                                 document.getElementById('progress').setAttribute('hidden','false');
92                                 net.simple_request('PATRON_BARCODE_EXISTS',[ ses(), barcode ],
93                                         function(req) {
94                                                 document.getElementById('progress').setAttribute('hidden','true');
95                                                 tb.disabled = false; tb.select(); tb.focus(); ;
96                                                 var robj = req.getResultObject();
97                                                 if (typeof robj.ilsevent != 'undefined') {
98                                                         sound.bad();
99                                                         add_msg('Problem retrieving ' + barcode + '.  Please report this message: \n' + js2JSON(robj));
100                                                         return;
101                                                 } else if (robj == 0) {
102                                                         sound.bad(); 
103                                                         add_msg('Barcode ' + barcode + ' not found.');
104                                                         return;
105                                                 }
106
107                         if (g.data.user_org_unit_opt_in_enabled) {
108                             var r = net.simple_request('USER_ORG_UNIT_OPT_IN_CHECK',[ ses(), robj ]);
109                             if (typeof r.ilsevent != 'undefined') {
110                                 throw(r);
111                             } else {
112     
113                                 if (r == 0) {
114                                 
115                                     JSAN.use('patron.util');
116                                     var parts = patron.util.retrieve_name_via_id( ses(), robj );
117     
118                                     if (0 != g.error.yns_alert(
119                                         'Does patron ' + parts[0] + ', ' + parts[1] + (parts[2] ? ' ' + parts[2] : '') + ' from ' + g.data.hash.aou[ parts[3] ].shortname() + ' consent to having their personal information shared with your library?',
120                                         'Patron/Library Opt-In Confirmation',
121                                         'Accept', 'Deny', null, 'Check here to confirm this message'
122                                         )
123                                     ) {
124                                         tb.select(); tb.focus();
125                                         return;
126                                     } else {
127                                         var c = net.simple_request('USER_ORG_UNIT_OPT_IN_CREATE',[ ses(), robj ]);
128                                         if (typeof c.ilsevent != 'undefined') throw(r);
129                                     }
130                                 }
131     
132                                                     sound.good();
133                                                     spawn(barcode);
134                             }
135                         } else {
136                                                     sound.good();
137                                                     spawn(barcode);
138                         }
139                                         }
140                                 );
141                         } catch(E) {
142                                 tb.select(); tb.focus();
143                                 g.error.standard_unexpected_error_alert('barcode_entry.xul',E);
144                         }
145                 }
146
147                 function add_msg(text) {
148                         var x = document.getElementById('status');
149                         var d = document.createElement('description');
150                         x.appendChild(d);
151                         d.appendChild( document.createTextNode( text ) );
152                         d.setAttribute('style','color: red');
153                 }
154
155                 function spawn(barcode) {
156                         try {
157                                 var loc = urls.XUL_PATRON_DISPLAY; // + '?barcode=' + window.escape(barcode);
158
159                                 if (typeof window.xulG == 'object' && typeof window.xulG.set_tab == 'function') {
160
161                                         window.xulG.set_tab( loc, {}, { 'barcode' : barcode } );
162                                 } else {
163
164                                         location.href = loc + '?barcode=' + window.escape(barcode);
165 ;
166                                 }
167                         } catch(E) {
168                                 g.error.standard_unexpected_error_alert('spawning patron display',E);
169                         }
170                 }
171
172                 function default_focus() { try { setTimeout( function() { document.getElementById('barcode_tb').focus(); }, 0); } catch(E) {} }
173         ]]>
174         </script>
175
176         <vbox flex="1" class="my_overflow">
177                 <groupbox orient="vertical" flex="1">
178                         <caption label="Retrieve Patron" />
179                         <hbox>
180                                 <label value="Barcode:" accesskey="B" control="barcode_tb"/>
181                                 <textbox id="barcode_tb" />
182                                 <button label="Submit" accesskey="S" oncommand="submit();"/>
183                         </hbox>
184                         <label value="Retrieving..." style="color: green" id="progress" hidden="true"/>
185                         <vbox id="status">
186                         </vbox>
187                 </groupbox>
188         </vbox>
189
190 </window>
191