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