]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/copy_details.xul
3bb79a2c52570be439a57a231291fa4fe498156b
[Evergreen.git] / Open-ILS / xul / staff_client / server / circ / copy_details.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Brief Bib 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="circ_copy_details_win" 
23         onload="try { my_init(); font_helper(); } catch(E) { alert(E); }"
24         width="800" height="600" persist="width height"
25         xmlns:html="http://www.w3.org/1999/xhtml"
26         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
27
28         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
29         <!-- BEHAVIOR -->
30         <script type="text/javascript">
31                 var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};
32         </script>
33         <scripts id="openils_util_scripts"/>
34
35         <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
36         <script>
37         <![CDATA[
38                 function $(id) { return document.getElementById(id); }
39
40                 function my_init() {
41                         try {
42                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
43                                 if (typeof JSAN == 'undefined') { throw( "The JSAN library object is missing."); }
44                                 JSAN.errorLevel = "die"; // none, warn, or die
45                                 JSAN.addRepository('/xul/server/');
46                                 JSAN.use('util.error'); g.error = new util.error();
47                                 g.error.sdump('D_TRACE','my_init() for circ_copy_details.xul');
48
49                                 g.cgi = new CGI();
50                                 g.copy_id = g.cgi.param('copy_id');
51
52                                 JSAN.use('util.network'); g.network = new util.network();
53                                 JSAN.use('util.date');
54                                 JSAN.use('OpenILS.data'); g.data = new OpenILS.data(); g.data.init({'via':'stash'});
55
56                                 // uber method
57                                 var robj = g.network.simple_request('FM_ACP_DETAILS', [ ses(), g.copy_id ] );
58                                 if (typeof robj.ilsevent != 'undefined') throw(robj);
59                                 if (robj.copy) g.copy = robj.copy; else throw(robj);
60                                 g.hold = robj.hold; g.transit = robj.transit; g.circ = robj.circ; g.callnumber = robj.volume;
61                                 if (g.hold) $('hold_caption').setAttribute('tooltiptext','Hold ID = ' + g.hold.id());
62                                 if (g.transit) $('transit_caption').setAttribute('tooltiptext','Transit ID = ' + g.transit.id());
63                                 if (g.circ) $('circ_caption').setAttribute('tooltiptext','Circ ID = ' + g.circ.id());
64
65                                 //g.callnumber = g.network.simple_request('FM_ACN_RETRIEVE',[ g.copy.call_number() ]);
66                                 //if (typeof g.callnumber.ilsevent != 'undefined') throw(g.callnumber);
67
68                                 $('top').setAttribute('src',urls.XUL_BIB_BRIEF + '?docid=' + g.callnumber.record());
69                                 g.data.temp_copy = g.copy; g.data.stash('temp_copy'); 
70                                 g.data.temp_callnumber = g.callnumber; g.data.stash('temp_callnumber'); 
71                                 $('item_summary').setAttribute('src',urls.XUL_COPY_SUMMARY);
72
73                                 $('r_last').disabled = true;
74                                 if (g.circ) {
75                                         $('r_last').disabled = false;
76                                         g.data.temp_circ = g.circ; g.data.stash('temp_circ');
77                                         $('circ').setAttribute('src',urls.XUL_CIRC_BRIEF + '?no_border=1');
78                                         if (g.circ.checkin_time()) {
79                                                 $('circ_caption').setAttribute('label','Last Circulation');
80                                         } else {
81                                                 $('circ_caption').setAttribute('label','Current Circulation');
82                                         }
83                                 } else {
84                                         $('circ_caption').setAttribute('label','This item has yet to circulate.');
85                                         $('circ').hidden = true;
86                                 }
87
88                                 if (g.transit) {
89                                         JSAN.use('circ.util'); var columns = circ.util.transit_columns({});
90
91                                         JSAN.use('util.list'); g.list = new util.list('transit');
92                                         g.list.init( { 'columns' : columns, 'map_row_to_columns' : circ.util.std_map_row_to_columns(), });
93                                         g.list.append( { 'row' : { 'my' : { 'atc' : g.transit, } } });
94         
95                                 } else {
96                                         $('transit_caption').setAttribute('label','This item is not in transit.');
97                                         $('transit').hidden = true;
98                                 }
99
100
101                                 $('r_hold').disabled = true;
102                                 if (g.hold) {
103                                         $('r_hold').disabled = false;
104                                         var status_robj = g.network.simple_request('FM_AHR_STATUS',[ ses(), g.hold.id() ]);
105                                         JSAN.use('circ.util');
106                                         var columns = circ.util.hold_columns( 
107                                                 { 
108                                                         'request_time' : { 'hidden' : false },
109                                                         'pickup_lib_shortname' : { 'hidden' : false },
110                                                         'hold_type' : { 'hidden' : true },
111                                                         'current_copy' : { 'hidden' : true },
112                                                         'capture_time' : { 'hidden' : true },
113                                                         'email_notify' : { 'hidden' : false },
114                                                         'phone_notify' : { 'hidden' : false },
115                                                 } 
116                                         );
117
118                                         JSAN.use('util.list'); g.list = new util.list('hold');
119                                         g.list.init( { 'columns' : columns, 'map_row_to_columns' : circ.util.std_map_row_to_columns(), });
120                                         g.list.append( { 'row' : { 'my' : { 'ahr' : g.hold, 'acp' : g.copy, 'status' : status_robj, } } });
121         
122                                         JSAN.use('patron.util'); 
123                                         var au_obj = patron.util.retrieve_fleshed_au_via_id( ses(), g.hold.usr() );
124                                         $('patron_name').setAttribute('value', au_obj.family_name() + ', ' + au_obj.first_given_name() + ' : ' + au_obj.card().barcode() );
125
126                                 } else {
127                                         if (g.copy.status() == 8 /* ON HOLDS SHELF */) {
128                                                 $('hold_caption').setAttribute('label','This item is not captured for a hold, however its status is incorrectly set to "On Holds Shelf".  Please check this item in to correct the status.');
129                                         } else {
130                                                 $('hold_caption').setAttribute('label','This item is not captured for a hold.');
131                                         }
132                                         $('hold').hidden = true;
133                                 }
134
135                         } catch(E) {
136                                 g.error.standard_unexpected_error_alert('Error in copy_details.xul, my_init()',E);
137                         }
138                 }
139
140                 function retrieve_last_patron() {
141                         try {
142                                 g.data.fancy_prompt_data = js2JSON( [ g.circ.usr() ] );
143                                 g.data.stash('fancy_prompt_data');
144                                 window.close();
145                         } catch(E) {
146                                 alert(E);
147                         }
148                 }
149
150                 function retrieve_hold_patron() {
151                         try {
152                                 g.data.fancy_prompt_data = js2JSON( [ g.hold.usr() ] );
153                                 g.data.stash('fancy_prompt_data');
154                                 window.close();
155                         } catch(E) {
156                                 alert(E);
157                         }
158                 }
159
160         ]]>
161         </script>
162
163         <vbox flex="1" style="overflow: auto;">
164                 <vbox style="border: none; overflow: none; min-height: 80;">
165                         <iframe flex="1" id="top" style="overflow: none; min-height: 80;"/>
166                 </vbox>
167                 <splitter><grippy/></splitter>
168                 <vbox style="border: none; overflow: none; min-height: 80;">
169                         <iframe flex="1" id="item_summary" style="overflow: none; min-height: 80;"/>
170                 </vbox>
171                 <splitter><grippy/></splitter>
172                 <groupbox flex="1" id="holds" style="overflow: none; min-height: 80;">
173                         <caption id="hold_caption" label="Captured for Hold"/>
174                         <label id="patron_name" class="patronNameLarge"/>
175                         <tree id="hold" flex="1" enableColumnDrag="true"/>
176                         <spacer FIXME="label and tree get swapped without this"/>
177                 </groupbox>
178                 <splitter><grippy/></splitter>
179                 <groupbox flex="1" id="transits" style="overflow: none; min-height: 80;">
180                         <caption id="transit_caption" label="In Transit"/>
181                         <tree id="transit" flex="1" enableColumnDrag="true"/>
182                 </groupbox>
183                 <splitter><grippy/></splitter>
184                 <groupbox flex="1" id="circs" style="overflow: none; min-height: 80;">
185                         <caption id="circ_caption" label="Last/Current Circulation" style="font-weight: bold"/>
186                         <iframe id="circ" style="min-height: 80" flex="1"/>
187                 </groupbox>
188         </vbox>
189         <hbox>
190                 <button id="r_last" label="Retrieve Last Patron" accesskey="L" oncommand="retrieve_last_patron();"/>
191                 <button id="r_hold" label="Retrieve Hold Patron" accesskey="H" oncommand="retrieve_hold_patron();"/>
192                 <spacer flex="1"/>
193                 <button id="done" label="Done" accesskey="D" oncommand="window.close();"/>
194         </hbox>
195
196 </window>
197