]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/copy_summary.xul
'Print Export' is a non-templated print option that prints the csv dump for a list...
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / cat / copy_summary.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
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="cat_copy_summary_win" 
22         onload="try { my_init(); font_helper(); } catch(E) { alert(E); }"
23         xmlns:html="http://www.w3.org/1999/xhtml"
24         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
25
26         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
27         <!-- BEHAVIOR -->
28         <script type="text/javascript">
29                 var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};
30         </script>
31         <scripts id="openils_util_scripts"/>
32
33         <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
34         <script>
35         <![CDATA[
36                 function $(id) { return document.getElementById(id); }
37                 function $w(id,text) { if ($(id)) util.widgets.set_text($(id),text); }
38
39                 function my_init() {
40                         try {
41                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
42                                 if (typeof JSAN == 'undefined') { throw( "The JSAN library object is missing."); }
43                                 JSAN.errorLevel = "die"; // none, warn, or die
44                                 JSAN.addRepository('/xul/server/');
45                                 JSAN.use('util.error'); g.error = new util.error();
46                                 g.error.sdump('D_TRACE','my_init() for cat_copy_summary.xul');
47
48                                 g.cgi = new CGI();
49                                 var copy_id = g.cgi.param('copy_id');
50
51                                 JSAN.use('util.network'); g.network = new util.network();
52                                 JSAN.use('util.date'); JSAN.use('util.widgets');
53                                 JSAN.use('OpenILS.data'); g.data = new OpenILS.data(); g.data.stash_retrieve();
54                                 var copy;
55                                 if (g.data.temp_copy) {
56                                         copy = g.data.temp_copy; g.data.temp_copy = null; g.data.stash('temp_copy');
57                                 }
58                                 var callnumber;
59                                 if (g.data.temp_callnumber) {
60                                         callnumber = g.data.temp_callnumber; g.data.temp_callnumber = null; g.data.stash('temp_callnumber');
61                                 }
62
63                                 $('caption').setAttribute('tooltiptext','Copy ID = ' + (copy_id || copy.id() ) );
64
65                                 JSAN.use('circ.util');
66                                 var columns = circ.util.columns( 
67                                         { 
68                                                 'barcode' : { 'hidden' : false },
69                                                 'location' : { 'hidden' : false },
70                                                 'owning_lib' : { 'hidden' : false },
71                                                 'circ_lib' : { 'hidden' : false },
72                                                 'call_number' : { 'hidden' : false },
73                                                 'status' : { 'hidden' : false },
74                                                 'alert_message' : { 'hidden' : false },
75                                         } 
76                                 ).concat(
77                                         {
78                                                 'id' : 'total_circs', 'label' : 'Total Circs', 'flex' : 1,
79                                                 'primary' : false, 'hidden' : false, 'persist' : 'hidden width ordinal',
80                                                 'render' : 'v = obj.network.simple_request("FM_CIRC_COUNT_RETRIEVE_VIA_COPY",[ my.acp.id() ]).total.count; v;' 
81                                         }
82                                 );
83
84                                 JSAN.use('util.list'); g.list = new util.list('item_summary_list');
85                                 g.list.init(
86                                         {
87                                                 'columns' : columns,
88                                                 'map_row_to_columns' : circ.util.std_map_row_to_columns(),
89                                         }
90                                 );
91         
92                                 function acp_callback(req) {
93                                         try {
94                                                 var copy = req.getResultObject();
95                                                 if (typeof copy.ilsevent != 'undefined') throw(copy);
96
97                                                 function acn_callback(rreq) {
98                                                         try {
99                                                                 $w('barcode',copy.barcode());   
100                                                                 $w('ref',get_bool(copy.ref()) ? 'Yes' : 'No');  
101                                                                 $w('opac_visible',get_bool(copy.opac_visible()) ? 'Yes' : 'No');        
102                                                                 $w('circulate',get_bool(copy.circulate()) ? 'Yes' : 'No');      
103                                                                 $w('holdable',get_bool(copy.holdable()) ? 'Yes' : 'No');        
104                                                                 $w('age_protect',copy.age_protect() == null ? '<Unset>' : ( typeof copy.age_protect() == 'object' ? copy.age_protect().name() : g.data.hash.crahp[ copy.age_protect() ].name() ) );     
105                                                                 $w('location',typeof copy.location() == 'object' ? copy.location().name() : g.data.lookup('acpl',copy.location()).name() );     
106                                                                 $w('create_date',util.date.formatted_date(copy.create_date(),'%F'));
107                                                                 $w('edit_date',util.date.formatted_date(copy.edit_date(),'%F'));
108                                                                 $w('status',typeof copy.status() == 'object' ? copy.status().name() : g.data.hash.ccs[ copy.status() ].name() );        
109                                                         } catch(E) {
110                                                                 g.error.standard_unexpected_error_alert('rendering copy',E);
111                                                         }
112                                                         try {
113                                                                 var cn = rreq.getResultObject();
114                                                                 if (typeof cn.ilsevent != 'undefined') {
115                                                                         switch(cn.ilsevent) {
116                                                                                 case 1508 /* ASSET_CALL_NUMBER_NOT_FOUND */ :
117                                                                                         $w('callnumber','Not Cataloged');       
118                                                                                 break;
119                                                                                 default:
120                                                                                         throw(cn);
121                                                                                 break;
122                                                                         }
123                                                                 } else {
124                                                                         $w('callnumber',cn.label());    
125                                                                 }
126                                                                 g.list.append({'row':{'my':{'acp':copy,'acn':cn}}});
127                                                         } catch(E) {
128                                                                 g.error.standard_unexpected_error_alert('retrieving volume',E);
129                                                         }
130                                                 }
131
132                                                 if (callnumber) {
133                                                         acn_callback( { 'getResultObject' : function() { return callnumber; } } );
134                                                 } else {
135                                                         g.network.simple_request(
136                                                                 'FM_ACN_RETRIEVE',
137                                                                 [ copy.call_number() ], acn_callback
138                                                         );
139                                                 }
140                                         } catch(E) {
141                                                 g.error.standard_unexpected_error_alert('retrieving copy',E);
142                                         }
143                                 }
144
145                                 if (copy_id) {
146                                         g.network.simple_request( 'FM_ACP_RETRIEVE', [ copy_id ], acp_callback);
147                                 } else {
148                                         acp_callback( { 'getResultObject' : function() { return copy; } } );
149                                         copy_id = copy.id();
150                                 }
151
152                                 g.network.simple_request('FM_CIRC_COUNT_RETRIEVE_VIA_COPY',[ copy_id ],function(req) {
153                                         try {
154                                                 var robj = req.getResultObject();
155                                                 if (typeof robj.ilsevent != 'undefined') throw(robj);
156                                                 $w('total_circs',robj.total.count);
157                                         } catch(E) {
158                                                 g.error.standard_unexpected_error_alert('retrieving circ total',E);
159                                         }
160                                 });
161
162                                 toggle_deck(); toggle_deck(); /* quick hack */
163
164                         } catch(E) {
165                                 try { g.error.standard_unexpected_error_alert('copy_summary.xul',E); } catch(F) { alert(E + '\n' + F); }
166                         }
167                 }
168
169                 function toggle_deck() {
170                         try {
171                                 if ($('item_deck').selectedIndex == 0) {
172                                         $('item_deck').selectedIndex = 1; /* change to grid */
173                                         $('save_columns').hidden = true;
174                                         $('sel_clip').hidden = true;
175                                 } else {
176                                         $('item_deck').selectedIndex = 0; /* change to tree */
177                                         $('save_columns').hidden = false;
178                                         $('sel_clip').hidden = false;
179                                 }
180                         } catch(E) {
181                         }
182                 }
183         ]]>
184         </script>
185
186         <groupbox id="groupbox" flex="1" style="overflow: none; min-height: 80;">
187                 <caption label="Item Summary" id="caption"/>
188                 <deck id="item_deck" persist="selectedIndex">
189                         <tree id="item_summary_list" enableColumnDrag="true" flex="1"/>
190                         <grid>
191                                 <columns>
192                                         <column/>
193                                         <column/>
194                                         <column/>
195                                         <column/>
196                                         <column/>
197                                         <column/>
198                                         <column/>
199                                         <column/>
200                                 </columns>
201                                 <rows>
202                                         <row>
203                                                 <label style="font-weight: bold" value="Barcode:"/>
204                                                 <label id="barcode" style="color: blue; text-decoration: underline; -moz-user-focus: normal;" onclick="copy_to_clipboard(event);"/>
205                                                 <label style="font-weight: bold" value="Location:"/>
206                                                 <label id="location"/>
207                                                 <label style="font-weight: bold" value="Call Number:"/>
208                                                 <label id="callnumber"/>
209                                                 <label style="font-weight: bold" value="Status:"/>
210                                                 <label id="status"/>
211                                         </row>
212                                         <row>
213                                                 <label style="font-weight: bold" value="Circulate:"/>
214                                                 <label id="circulate"/>
215                                                 <label style="font-weight: bold" value="Reference:"/>
216                                                 <label id="ref"/>
217                                                 <label style="font-weight: bold" value="Holdable:"/>
218                                                 <label id="holdable"/>
219                                                 <label style="font-weight: bold" value="Opac Visible:"/>
220                                                 <label id="opac_visible"/>
221                                         </row>
222                                         <row>
223                                                 <label style="font-weight: bold" value="Created:"/>
224                                                 <label id="create_date"/>
225                                                 <label style="font-weight: bold" value="Edited:"/>
226                                                 <label id="edit_date"/>
227                                                 <label style="font-weight: bold" value="Age Protect:"/>
228                                                 <label id="age_protect"/>
229                                                 <label style="font-weight: bold" value="Total Circs:"/>
230                                                 <label id="total_circs"/>
231                                         </row>
232                                 </rows>
233                         </grid>
234                 </deck>
235                 <hbox>
236                         <button label="Alternate View" oncommand="toggle_deck()"/>
237                         <button id="save_columns" label="Save Columns" oncommand="try { g.list.save_columns(); } catch(E) { alert(E); }"/>
238                         <button id="sel_clip" label="Copy to Clipboard" oncommand="try { g.list.node.view.selection.selectAll(); g.list.clipboard(); } catch(E) { alert(E); }"/>
239                         <button id="print_export" label="Print Export" oncommand="try { g.list.on_all_fleshed = function() { JSAN.use('util.print'); var p = new util.print(); p.simple( g.list.dump_csv(), { 'content_type' : 'text/plain' } ); setTimeout( function() { g.list.on_all_fleshed = null; }, 0); }; g.list.full_retrieve(); } catch(E) { alert(E); }"/>
240                 </hbox>
241         </groupbox>
242
243 </window>
244