]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/circ_summary.xul
Improve Firefox/XULRunner Support
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / circ / circ_summary.xul
1 <?xml version="1.0" encoding="UTF-8"?>
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="/xul/server/skin/global.css" type="text/css"?>
9 <?xml-stylesheet href="/xul/server/skin/patron_display.css" type="text/css"?>
10
11 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
12 <!-- LOCALIZATION -->
13 <!DOCTYPE window PUBLIC "" ""[
14     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
15 ]>
16
17 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
18 <!-- OVERLAYS -->
19 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
20
21 <window id="circ_circ_brief_win" 
22     onload="try { my_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
23     width="750" height="550" oils_persist="height width sizemode"
24     xmlns:html="http://www.w3.org/1999/xhtml"
25     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
26
27     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
28     <!-- BEHAVIOR -->
29         <script type="text/javascript">
30         var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};
31     </script>
32         <scripts id="openils_util_scripts"/>
33
34     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
35     <script>
36     <![CDATA[
37         function $(id) { return document.getElementById(id); }
38
39         var xulG = {};
40
41         function my_init() {
42             try {
43                 if (typeof JSAN == 'undefined') {
44                     throw( document.getElementById("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 circ_circ_brief.xul');
50
51                 g.copy_id = xul_param('copy_id',{'modal_xulG':true});
52
53                 JSAN.use('util.network'); g.network = new util.network();
54                 JSAN.use('util.date');
55                 JSAN.use('OpenILS.data'); g.data = new OpenILS.data(); g.data.init({'via':'stash'});
56
57                 g.copy = g.network.simple_request('FM_ACP_RETRIEVE',[ g.copy_id ]);
58                 if (typeof g.copy.ilsevent != 'undefined') throw(g.copy);
59                 g.callnumber = g.network.simple_request('FM_ACN_RETRIEVE.authoritative',[ g.copy.call_number() ]);
60                 if (typeof g.callnumber.ilsevent != 'undefined') throw(g.callnumber);
61
62                 var tv = $('top_vbox'); while(tv.firstChild) tv.removeChild(tv.lastChild);
63                 var top = document.createElement('iframe'); tv.appendChild(top);
64                 top.setAttribute('src',urls.XUL_BIB_BRIEF);
65                 top.setAttribute('flex','1');
66                 get_contentWindow(top).xulG = { 'docid' : g.callnumber.record() };
67                 var mv = $('mid_vbox'); while(mv.firstChild) mv.removeChild(mv.lastChild);
68                 var mid = document.createElement('iframe'); mv.appendChild(mid);
69                 mid.setAttribute('src',urls.XUL_COPY_SUMMARY);
70                 mid.setAttribute('flex','1');
71                 get_contentWindow(mid).xulG = { 'copy_id' : g.copy.id(), 'new_tab' : xulG.new_tab, 'url_prefix' : xulG.url_prefix };
72
73                 show_circs();
74
75             } catch(E) {
76                 g.error.standard_unexpected_error_alert('Error in circ_brief.xul, my_init()',E);
77             }
78         }
79
80         function show_circs() {
81             try {
82                 $('r_last').disabled = true; $('r_all').disabled = true;    
83                 g.circs = g.network.simple_request('FM_CIRC_RETRIEVE_VIA_COPY',
84                     [ ses(), g.copy_id ]);
85                 if (g.circs == null || typeof g.circs.ilsevent != 'undefined') throw(circs);
86                 if (g.circs.length == 0) return;
87                 //g.circs = g.circs.reverse(); /* put the most recent at the top */
88                 $('r_last').disabled = false; $('r_all').disabled = false;    
89
90                 var gb = $('circs');
91                 for (var j = 0; j < g.circs.length; j++) {
92                     var iframe = document.createElement('iframe');
93                     iframe.setAttribute('style','overflow: none; min-height: 100px;');
94                     iframe.setAttribute('flex','1');
95                     gb.appendChild(iframe);
96                     iframe.setAttribute('src', urls.XUL_CIRC_BRIEF); // + '?circ_id=' + g.circs[j].id() );
97                     get_contentWindow(iframe).xulG = { 'circ_id' : g.circs[j].id() };
98                 }
99             } catch(E) {
100                 g.error.standard_unexpected_error_alert('error showing circs',E);
101             }
102         }
103
104         function retrieve_last() {
105             try {
106                 //g.data.fancy_prompt_data = js2JSON( [ g.circs[0].usr() ] );
107                 //g.data.stash('fancy_prompt_data');
108                 xulG.retrieve_these_patrons = [ g.circs[0].usr() ];
109                 update_modal_xulG(xulG);
110                 window.close();
111             } catch(E) {
112                 g.error.standard_unexpected_error_alert('retrieve_last',E);
113             }
114         }
115
116         function retrieve_all() {
117             try {
118                 var patrons = []; var p_hash = {};
119                 for (var i = 0; i < g.circs.length; i++) {
120                     var usr = g.circs[i].usr();
121                     if (typeof p_hash[usr] != 'undefined') { continue; }
122                     p_hash[usr] = true;
123                     patrons.push( function(a){return a;}(usr) );
124                 }
125                 //g.data.fancy_prompt_data = js2JSON(patrons);
126                 //g.data.stash('fancy_prompt_data');
127                 xulG.retrieve_these_patrons = patrons;
128                 update_modal_xulG(xulG);
129                 window.close();
130             } catch(E) {
131                 g.error.standard_unexpected_error_alert('retrieve_all',E);
132             }
133         }
134
135     ]]>
136     </script>
137
138     <vbox flex="1" class="my_overflow">
139         <vbox id="top_vbox" flex="1" class="my_overflow" oils_persist="height"/>
140         <splitter id="splitter1" oils_persist="state hidden" oils_persist_peers="top_vbox mid_vbox"><grippy/></splitter>
141         <vbox id="mid_vbox" flex="1" class="my_overflow" oils_persist="height"/>
142         <splitter id="splitter2" oils_persist="state hidden" oils_persist_peers="mid_vbox circs"><grippy/></splitter>
143         <groupbox flex="1" id="circs" class="my_overflow" oils_persist="height">
144             <caption label="&staff.circ.circ_summary.caption;"/>
145         </groupbox>
146         <hbox>
147             <button id="r_last" label="&staff.circ.circ_summary.retrieve_last.label;" accesskey="&staff.circ.circ_summary.retrieve_last.accesskey;" oncommand="retrieve_last();"/>
148             <button id="r_all" label="&staff.circ.circ_summary.retrieve_all.label;" accesskey="&staff.circ.circ_summary.retrieve_all.accesskey;" oncommand="retrieve_all();"/>
149             <spacer flex="1"/>
150             <button label="&staff.circ.circ_summary.done.label;" accesskey="&staff.circ.circ_summary.done.accesskey;" oncommand="window.close();"/>
151         </hbox>
152     </vbox>
153
154 </window>
155