]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/hold_notices.xul
some i18n goodness and fixes. And an extra column for patron lists, and including...
[Evergreen.git] / Open-ILS / xul / staff_client / server / patron / hold_notices.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Patron Display -->
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 <?xml-stylesheet href="/xul/server/skin/patron_display.css" type="text/css"?>
11
12 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
13 <!-- LOCALIZATION -->
14 <!DOCTYPE window PUBLIC "" ""[
15         <!--#include virtual="/opac/locale/en-US/lang.dtd"-->
16 ]>
17
18 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
19 <!-- OVERLAYS -->
20 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
21
22 <window id="hold_notices_win" width="700" height="550" persist="sizemode width height"
23         onload="try{ my_init(); font_helper(); } catch(E) { alert(E); }" title="Hold Notices"
24         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
25
26         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
27         <!-- BEHAVIOR -->
28         <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};</script>
29         <scripts id="openils_util_scripts"/>
30
31         <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
32         <script>
33         <![CDATA[
34
35                 function $(id) { return document.getElementById(id); }
36
37                 function my_init() {
38                         try {
39                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
40                 if (typeof JSAN == 'undefined') { throw( "The JSAN library object is missing."); }
41                                 JSAN.errorLevel = "die"; // none, warn, or die
42                                 JSAN.addRepository('/xul/server/');
43
44                                 JSAN.use('util.error'); g.error = new util.error();
45                                 JSAN.use('util.network'); g.network = new util.network();
46                                 JSAN.use('util.date'); JSAN.use('util.money'); JSAN.use('patron.util');
47                                 JSAN.use('OpenILS.data'); g.data = new OpenILS.data(); g.data.init({'via':'stash'});
48
49                                 g.error.sdump('D_TRACE','my_init() for hold_notices.xul');
50
51                                 g.ahr_id = xul_param('ahr_id');
52                                 g.ahr = g.network.simple_request('FM_AHR_RETRIEVE',[ ses(), g.ahr_id ]);
53                                 if (typeof g.ahr.ilsevent != 'undefined') { throw(g.ahr); }
54                                 g.ahr = g.ahr[0];
55
56                                 render_patron();
57
58                                 a_list_of_one();
59
60                                 document.getElementById('bib_brief').setAttribute('src',urls.XUL_BIB_BRIEF); // + '?docid=' + g.ahr.target());
61                                 get_contentWindow(document.getElementById('bib_brief')).xulG = { 'docid' : g.ahr.target() };
62
63                                 refresh();
64
65                         } catch(E) {
66                                 try { g.error.standard_unexpected_error_alert('/xul/server/patron/hold_notices.xul',E); } catch(E) { alert('FIXME: ' + js2JSON(E)); }
67                         }
68                 }
69
70                 function render_patron() {
71                         if (g.ahr.usr()) {
72                                 JSAN.use('patron.util'); 
73                                 var au_obj = patron.util.retrieve_fleshed_au_via_id( ses(), g.ahr.usr() );
74                                 
75                                 $('patron_name').setAttribute('value', 
76                                         ( au_obj.prefix() ? au_obj.prefix() + ' ' : '') + 
77                                         au_obj.family_name() + ', ' + 
78                                         au_obj.first_given_name() + ' ' +
79                                         ( au_obj.second_given_name() ? au_obj.second_given_name() + ' ' : '' ) +
80                                         ( au_obj.suffix() ? au_obj.suffix() : '')
81                                         + ' : ' + au_obj.card().barcode() 
82                                 );
83                         }
84                 }
85
86                 function a_list_of_one() {
87                         JSAN.use('circ.util');
88                         var columns = circ.util.hold_columns( 
89                                 { 
90                                         'status' : { 'hidden' : true },
91                                         'request_time' : { 'hidden' : false },
92                                         'pickup_lib_shortname' : { 'hidden' : false },
93                                         'current_copy' : { 'hidden' : false },
94                                         'phone_notify' : { 'hidden' : false },
95                                         'email_notify' : { 'hidden' : false },
96                                 } 
97                         );
98                         JSAN.use('util.list'); g.list = new util.list('holds_list');
99                         g.list.init(
100                                 {
101                                         'columns' : columns,
102                                         'map_row_to_columns' : circ.util.std_map_row_to_columns(),
103                                         'retrieve_row' : function(params) {
104                                                 var row = params.row;
105                                                 try {
106                                                         switch(row.my.ahr.hold_type()) {
107                                                                 case 'M' :
108                                                                         row.my.mvr = g.network.request(
109                                                                                 api.MODS_SLIM_METARECORD_RETRIEVE.app,
110                                                                                 api.MODS_SLIM_METARECORD_RETRIEVE.method,
111                                                                                 [ row.my.ahr.target() ]
112                                                                         );
113                                                                 break;
114                                                                 default:
115                                                                         row.my.mvr = g.network.request(
116                                                                                 api.MODS_SLIM_RECORD_RETRIEVE.app,
117                                                                                 api.MODS_SLIM_RECORD_RETRIEVE.method,
118                                                                                 [ row.my.ahr.target() ]
119                                                                         );
120                                                                         if (row.my.ahr.current_copy()) {
121                                                                                 row.my.acp = g.network.simple_request( 'FM_ACP_RETRIEVE', [ row.my.ahr.current_copy() ]);
122                                                                         }
123                                                                 break;
124                                                         }
125                                                 } catch(E) {
126                                                         g.error.sdump('D_ERROR','retrieve_row: ' + E );
127                                                 }
128                                                 if (typeof params.on_retrieve == 'function') {
129                                                         params.on_retrieve(row);
130                                                 }
131                                                 return row;
132                                         },
133                                 }
134                         );
135                         g.list.append(
136                                 {
137                                         'row' : {
138                                                 'my' : {
139                                                         'ahr' : g.ahr,
140                                                 }
141                                         },
142                                         'no_auto_select' : true,
143                                 }
144                         );
145                 }
146
147                 function refresh() {
148                         retrieve_notifications(); render_notifications();
149                 }
150
151                 function retrieve_notifications() {
152                         g.notifications = g.network.simple_request('FM_AHN_RETRIEVE_VIA_AHR',[ ses(), g.ahr_id ]).reverse();
153                 }
154
155                 function apply(node,field,value) {
156                         util.widgets.apply(
157                                 node,'name',field,
158                                 function(n) {
159                                         switch(n.nodeName) {
160                                                 case 'description' : n.appendChild( document.createTextNode( value ) ); break;
161                                                 case 'label' : n.value = value; break;
162                                                 default : n.value = value; break;
163                                         }
164                                 }
165                         );
166                 }
167
168                 function render_notifications() {
169                         JSAN.use('util.widgets'); util.widgets.remove_children('notifications_panel');
170                         var np = $('notifications_panel');
171
172                         for (var i = 0; i < g.notifications.length; i++) {
173
174                                 /* template */
175                                 var node = $('notification_template').cloneNode(true); np.appendChild(node); node.hidden = false;
176                                 util.widgets.apply(node,'name','notify_time',
177                                         function(n){n.setAttribute("tooltiptext","ID: " + g.notifications[i].id() + " Hold ID: " + g.notifications[i].hold() + " Notifying Staff ID: " + g.notifications[i].notify_staff());}
178                                 );
179                                 apply(node,'method',g.notifications[i].method ? g.notifications[i].method() : '');
180                                 apply(node,'note',g.notifications[i].note() ? g.notifications[i].note() : '');
181                                 apply(node,'notify_time',g.notifications[i].notify_time() ? g.notifications[i].notify_time().toString().substr(0,10) : '');
182                         }
183
184                 }
185                 
186                 function new_notification() {
187                         try {
188                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect UniversalBrowserWrite");
189                                 var xml = '<groupbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" flex="1">';
190                                 xml += '<caption label="New Notification Record"/><grid flex="1"><columns><column/><column flex="1"/></columns><rows>';
191                                 xml += '<row><label value="Method"/><textbox id="method" name="fancy_data"/></row>';
192                                 xml += '<row><label value="Note"/><textbox multiline="true" id="note" name="fancy_data"/></row>';
193                                 xml += '<row><spacer/><hbox><button label="Cancel" name="fancy_cancel" accesskey="C"/>';
194                                 xml += '<button label="Add Notification Record" accesskey="A" name="fancy_submit"/></hbox></row></rows></grid></groupbox>';
195                                 //g.data.init({'via':'stash'});
196                                 //g.data.temp_notification_xml = xml; g.data.stash('temp_notification_xml');
197                                 JSAN.use('util.window'); var win = new util.window();
198                                 var fancy_prompt_data = win.open(
199                                         urls.XUL_FANCY_PROMPT,
200                                         //+ '?xml_in_stash=temp_notification_xml'
201                                         //+ '&focus=' + window.escape('method')
202                                         //+ '&title=' + window.escape('Add Notification Record'),
203                                         'fancy_prompt', 'chrome,resizable,modal,width=700,height=500',
204                                         { 'xml' : xml, 'focus' : 'method', 'title' : 'Add Notification Record' }
205                                 );
206                                 if (fancy_prompt_data.fancy_status == 'complete') {
207                                         var notification = new ahn();
208                                         notification.isnew(1);
209                                         notification.hold(g.ahr_id);
210                                         notification.method( fancy_prompt_data.method );
211                                         notification.note( fancy_prompt_data.note );
212                                         var r = g.network.simple_request('FM_AHN_CREATE',[ ses(), notification ]); if (typeof r.ilsevent != 'undefined') throw(r);
213                                         setTimeout(function(){refresh();},0);
214                                 }
215                         } catch(E) {
216                                 g.error.standard_unexpected_error_alert('The notification was not likely created.',E);
217                                 setTimeout(function(){refresh();},0);
218                         }
219                 }
220
221         ]]>
222         </script>
223
224     <messagecatalog id="circStrings" src="/xul/server/locale/<!--#echo var='locale' -->/circ.properties"/>
225
226         <stack hidden="true" id="notification_template" flex="1">
227                 <groupbox flex="1" style="background-color: black;"/>
228                 <groupbox flex="1" style="background-color: #FFDE00; -moz-border-radius-topright: 35px;" >
229                         <hbox>
230                                 <description name="method" label="Method:" style="font-weight: bold"/>
231                                 <spacer flex="1"/>
232                                 <description name="notify_time" style="font-weight: bold"/>
233                         </hbox>
234                         <description name="note"/>
235                 </groupbox>
236         </stack>
237
238     <vbox id="v1" flex="1" persist="height">
239         <label id="patron_name" class="patronNameLarge"/>
240         <iframe id="bib_brief" flex="1"/>
241     </vbox>
242
243     <splitter><grippy/></splitter>
244
245     <vbox id="v2" flex="1" persist="height">
246         <vbox flex="1">
247             <tree id="holds_list" flex="1" enableColumnDrag="true" style=""/>
248         </vbox>
249         <hbox>
250             <button label="Add Record of Notification" accesskey="A" oncommand="new_notification()"/>
251             <spacer flex="1"/>
252             <button label="Close" accesskey="C" oncommand="window.close()"/>
253         </hbox>
254         </vbox>
255
256     <splitter><grippy/></splitter>
257
258         <vbox persist="height" flex="9" class="my_overflow" id="notifications_panel">
259         </vbox>
260
261
262 </window>
263