]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/copy_summary.xul
LP2042879 Shelving Location Groups Admin accessibility
[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     vim:noet:sw=4:ts=4:
6 -->
7
8 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
9 <!-- STYLESHEETS -->
10 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
11 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
12
13 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
14 <!-- LOCALIZATION -->
15 <!DOCTYPE window PUBLIC "" ""[
16     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
17 ]>
18
19 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
20 <!-- OVERLAYS -->
21 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
22
23 <window id="cat_copy_summary_win" 
24     onload="try { font_helper(); persist_helper(); my_init(); } catch(E) { alert(E); }"
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         function $w(id,text) { if ($(id)) util.widgets.set_text($(id),text); }
40
41         function my_init() {
42             try {
43                 if (typeof JSAN == 'undefined') { 
44                     throw( $("commonStrings").getString('common.jsan.missing') );
45                 }
46                 JSAN.errorLevel = "die"; // none, warn, or die
47                 JSAN.addRepository('/xul/server/');
48                 JSAN.use('util.error'); g.error = new util.error();
49                 g.error.sdump('D_TRACE','my_init() for cat_copy_summary.xul');
50
51                 var copy_id = xul_param('copy_id'); 
52
53                 JSAN.use('util.network'); g.network = new util.network();
54                 JSAN.use('util.date'); JSAN.use('util.widgets');
55                 JSAN.use('OpenILS.data'); g.data = new OpenILS.data(); g.data.stash_retrieve();
56                 var copy = xul_param('copy',{'stash_name':'temp_copy','clear_xpcom':true});
57                 var callnumber = xul_param('callnumber',{'stash_name':'temp_callnumber','clear_xpcom':true});
58
59                 $('caption').setAttribute('tooltiptext', $('catStrings').getFormattedString('staff.cat.copy_summary.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' : $('catStrings').getString('staff.cat.copy_summary.total_circs.label'), 'flex' : 1,
75                         'primary' : false, 'hidden' : false,
76                         'render' : 'v = obj.network.simple_request("FM_CIRC_COUNT_RETRIEVE_VIA_COPY",[ my.acp.id() ]).total.count; v;' 
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                     }
85                 );
86                 $('list_actions').appendChild( g.list.render_list_actions() );
87                 g.list.set_list_actions();
88  
89                 function acp_callback(req) {
90                     try {
91                         var copy = req.getResultObject();
92                         if (typeof copy.ilsevent != 'undefined') throw(copy);
93
94                         function acn_callback(rreq) {
95                             try {
96                                 $w('copy_summary_barcode',copy.barcode());    
97                                 $w('copy_summary_ref',get_bool(copy.ref()) ? $('catStrings').getString('staff.cat.copy_summary.yes') : $('catStrings').getString('staff.cat.copy_summary.no'));    
98                                 $w('copy_summary_opac_visible',get_bool(copy.opac_visible()) ? $('catStrings').getString('staff.cat.copy_summary.yes') : $('catStrings').getString('staff.cat.copy_summary.no'));    
99                                 $w('copy_summary_circulate',get_bool(copy.circulate()) ? $('catStrings').getString('staff.cat.copy_summary.yes') : $('catStrings').getString('staff.cat.copy_summary.no'));    
100                                 $w('copy_summary_holdable',get_bool(copy.holdable()) ? $('catStrings').getString('staff.cat.copy_summary.yes') : $('catStrings').getString('staff.cat.copy_summary.no'));    
101                                 $w('copy_summary_age_protect',copy.age_protect() == null ? $('staff.cat.copy_summary.unset') : ( typeof copy.age_protect() == 'object' ? copy.age_protect().name() : g.data.hash.crahp[ copy.age_protect() ].name() ) );    
102                                 $w('copy_summary_location',typeof copy.location() == 'object' ? copy.location().name() : g.data.lookup('acpl',copy.location()).name() );    
103                                 $w('copy_summary_create_date',util.date.formatted_date(copy.create_date(),'%F'));
104                                 $w('copy_summary_edit_date',util.date.formatted_date(copy.edit_date(),'%F'));
105                                 $w('copy_summary_status',typeof copy.status() == 'object' ? copy.status().name() : g.data.hash.ccs[ copy.status() ].name() );    
106                             } catch(E) {
107                                 g.error.standard_unexpected_error_alert('rendering copy',E);
108                             }
109                             try {
110                                 var cn = rreq.getResultObject();
111                                 if (typeof cn.ilsevent != 'undefined') {
112                                     switch(Number(cn.ilsevent)) {
113                                         case 1508 /* ASSET_CALL_NUMBER_NOT_FOUND */ :
114                                             $w('copy_summary_callnumber', $('catStrings').getString('staff.cat.copy_summary.not_cataloged'));    
115                                         break;
116                                         default:
117                                             throw(cn);
118                                         break;
119                                     }
120                                 } else {
121                                     $w('copy_summary_callnumber',cn.label());    
122                                 }
123                                 g.list.append({'row':{'my':{'acp':copy,'acn':cn,'circ':xulG.circ}}});
124                                 g.barcode = copy.barcode(); g.doc_id = cn.record();
125                                 if (g.doc_id > -1) {
126                                     $('show_in_opac').hidden = false;
127                                 }
128                             } catch(E) {
129                                 g.error.standard_unexpected_error_alert('retrieving volume',E);
130                             }
131                         }
132
133                         if (callnumber) {
134                             acn_callback( { 'getResultObject' : function() { return callnumber; } } );
135                         } else {
136                             g.network.simple_request(
137                                 'FM_ACN_RETRIEVE.authoritative',
138                                 [ copy.call_number() ], acn_callback
139                             );
140                         }
141                     } catch(E) {
142                         g.error.standard_unexpected_error_alert('retrieving copy',E);
143                     }
144                 }
145
146                 if (copy_id) {
147                     g.network.simple_request( 'FM_ACP_RETRIEVE', [ copy_id ], acp_callback);
148                 } else {
149                     acp_callback( { 'getResultObject' : function() { return copy; } } );
150                     copy_id = copy.id();
151                 }
152
153                 g.network.simple_request('FM_CIRC_COUNT_RETRIEVE_VIA_COPY',[ copy_id ],function(req) {
154                     try {
155                         var robj = req.getResultObject();
156                         if (typeof robj.ilsevent != 'undefined') throw(robj);
157                         $w('copy_summary_total_circs',robj.total.count);
158                     } catch(E) {
159                         g.error.standard_unexpected_error_alert('retrieving circ total',E);
160                     }
161                 });
162
163                 if ( $('alternate_view').checked ) {
164                     toggle_deck();
165                 }
166
167             } catch(E) {
168                 try { g.error.standard_unexpected_error_alert('copy_summary.xul',E); } catch(F) { alert(E + '\n' + F); }
169             }
170         }
171
172         function toggle_deck() {
173             try {
174                 if ($('item_deck').selectedIndex == 0) {
175                     $('item_deck').selectedIndex = 1; /* change to grid */
176                 } else {
177                     $('item_deck').selectedIndex = 0; /* change to tree */
178                 }
179             } catch(E) {
180             }
181         }
182     ]]>
183     </script>
184
185     <messagecatalog id="catStrings" src="/xul/server/locale/<!--#echo var='locale'-->/cat.properties" />
186     <messagecatalog id="circStrings" src="/xul/server/locale/<!--#echo var='locale'-->/circ.properties" />
187
188     <groupbox id="groupbox" flex="1" style="overflow: none; min-height: 80;">
189         <caption label="&staff.cat.copy_summary.label;" id="caption"/>
190         <deck id="item_deck" oils_persist="selectedIndex">
191             <tree id="item_summary_list" enableColumnDrag="true" flex="1"/>
192             <grid>
193                 <columns>
194                     <column/>
195                     <column/>
196                     <column/>
197                     <column/>
198                     <column/>
199                     <column/>
200                     <column/>
201                     <column/>
202                 </columns>
203                 <rows>
204                     <row>
205                         <label style="font-weight: bold" value="&staff.cat.copy_summary.barcode.label;"/>
206                         <label id="copy_summary_barcode" style="color: blue; text-decoration: underline; -moz-user-focus: normal;" onclick="copy_to_clipboard(event);"/>
207                         <label style="font-weight: bold" value="&staff.cat.copy_summary.location.label;"/>
208                         <label id="copy_summary_location"/>
209                         <label style="font-weight: bold" value="&staff.cat.copy_summary.call_number.label;"/>
210                         <label id="copy_summary_callnumber"/>
211                         <label style="font-weight: bold" value="&staff.cat.copy_summary.status.label;"/>
212                         <label id="copy_summary_status"/>
213                     </row>
214                     <row>
215                         <label style="font-weight: bold" value="&staff.cat.copy_summary.circulate.label;"/>
216                         <label id="copy_summary_circulate"/>
217                         <label style="font-weight: bold" value="&staff.cat.copy_summary.reference.label;"/>
218                         <label id="copy_summary_ref"/>
219                         <label style="font-weight: bold" value="&staff.cat.copy_summary.holdable.label;"/>
220                         <label id="copy_summary_holdable"/>
221                         <label style="font-weight: bold" value="&staff.cat.copy_summary.opac_visible.label;"/>
222                         <label id="copy_summary_opac_visible"/>
223                     </row>
224                     <row>
225                         <label style="font-weight: bold" value="&staff.cat.copy_summary.created.label;"/>
226                         <label id="copy_summary_create_date"/>
227                         <label style="font-weight: bold" value="&staff.cat.copy_summary.edited.label;"/>
228                         <label id="copy_summary_edit_date"/>
229                         <label style="font-weight: bold" value="&staff.cat.copy_summary.age_protect.label;"/>
230                         <label id="copy_summary_age_protect"/>
231                         <label style="font-weight: bold" value="&staff.cat.copy_summary.total_circs.label;"/>
232                         <label id="copy_summary_total_circs"/>
233                     </row>
234                 </rows>
235             </grid>
236         </deck>
237         <hbox>
238             <hbox id="list_actions"/>
239             <button id="show_in_opac" hidden="true" label="&staff.cat.copy_summary.show_in_opac.label;" accesskey="&staff.cat.copy_summary.show_in_opac.accesskey;"
240                 oncommand="JSAN.use('cat.util'); cat.util.show_in_opac([{barcode:g.barcode,doc_id:g.doc_id}]);"/>
241             <checkbox id="alternate_view" label="&staff.cat.copy_summary.alternate_view.label;" accesskey="&staff.cat.copy_summary.alternate_view.accesskey;" 
242                 oils_persist="checked" oils_persist_no_poke="true"
243                 oncommand="toggle_deck()"/>
244         </hbox>
245     </groupbox>
246
247 </window>
248