]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/copy_summary.xul
layout tweaks
[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(); } 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
59                                 $('caption').setAttribute('tooltiptext','Copy ID = ' + (copy_id || copy.id() ) );
60
61                                 JSAN.use('circ.util');
62                                 var columns = circ.util.columns( 
63                                         { 
64                                                 'barcode' : { 'hidden' : false },
65                                                 'location' : { 'hidden' : false },
66                                                 'owning_lib' : { 'hidden' : false },
67                                                 'circ_lib' : { 'hidden' : false },
68                                                 'call_number' : { 'hidden' : false },
69                                                 'status' : { 'hidden' : false },
70                                                 'alert_message' : { 'hidden' : false },
71                                         } 
72                                 ).concat(
73                                         {
74                                                 'id' : 'total_circs', 'label' : 'Total Circs', 'flex' : 1,
75                                                 'primary' : false, 'hidden' : false, 'persist' : 'hidden width ordinal',
76                                                 'render' : 'obj.network.simple_request("FM_CIRC_COUNT_RETRIEVE_VIA_COPY",[ my.acp.id() ]).total.count' 
77                                         }
78                                 );
79
80                                 JSAN.use('util.list'); g.list = new util.list('item_summary_list');
81                                 g.list.init(
82                                         {
83                                                 'columns' : columns,
84                                                 'map_row_to_column' : circ.util.std_map_row_to_column(),
85                                         }
86                                 );
87         
88                                 function acp_callback(req) {
89                                         try {
90                                                 var copy = req.getResultObject();
91                                                 if (typeof copy.ilsevent != 'undefined') throw(copy);
92                                                 g.list.append({'row':{'my':{'acp':copy}}});
93                                         } catch(E) {
94                                                 g.error.standard_unexpected_error_alert('retrieving copy',E);
95                                         }
96                                 }
97
98                                 if (copy_id) {
99                                         g.network.simple_request( 'FM_ACP_RETRIEVE', [ copy_id ], acp_callback);
100                                 } else {
101                                         acp_callback( { 'getResultObject' : function() { return copy; } } );
102                                 }
103
104                         } catch(E) {
105                                 var err_msg = "!! This software has encountered an error.  Please tell your friendly " +
106                                         "system administrator or software developer the following:\ncat/copy_summary.xul\n" + E + '\n';
107                                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); }
108                                 alert(err_msg);
109                         }
110                 }
111
112         ]]>
113         </script>
114
115         <groupbox id="groupbox" flex="1" style="overflow: none; min-height: 80;">
116                 <caption label="Item Summary" id="caption"/>
117                 <tree id="item_summary_list" enableColumnDrag="true" flex="1"/>
118         </groupbox>
119
120 </window>
121