]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/circ_summary.xul
*** empty log message ***
[Evergreen.git] / Open-ILS / xul / staff_client / server / circ / circ_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 <?xml-stylesheet href="/xul/server/skin/patron_display.css" type="text/css"?>
11
12 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
13 <!-- LOCALIZATION -->
14 <!DOCTYPE window PUBLIC "" ""[
15         <!--#include virtual="/opac/locale/en-US/lang.dtd"-->
16 ]>
17
18 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
19 <!-- OVERLAYS -->
20 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
21
22 <window id="circ_circ_brief_win" 
23         onload="try { my_init(); } catch(E) { alert(E); }"
24         width="750" height="550"
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
40                 function my_init() {
41                         try {
42                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
43                                 if (typeof JSAN == 'undefined') { throw( "The JSAN library object is missing."); }
44                                 JSAN.errorLevel = "die"; // none, warn, or die
45                                 JSAN.addRepository('/xul/server/');
46                                 JSAN.use('util.error'); g.error = new util.error();
47                                 g.error.sdump('D_TRACE','my_init() for circ_circ_brief.xul');
48
49                                 g.cgi = new CGI();
50                                 g.copy_id = g.cgi.param('copy_id');
51                                 g.count = g.cgi.param('count');
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',[ g.copy.call_number() ]);
60                                 if (typeof g.callnumber.ilsevent != 'undefined') throw(g.callnumber);
61
62                                 $('top').setAttribute('src',urls.XUL_BIB_BRIEF + '?docid=' + g.callnumber.record());
63                                 $('mid').setAttribute('src',urls.XUL_COPY_SUMMARY + '?copy_id=' + g.copy.id());
64
65                                 show_circs();
66
67                         } catch(E) {
68                                 g.error.standard_unexpected_error_alert('Error in circ_brief.xul, my_init()',E);
69                         }
70                 }
71
72                 function show_circs() {
73                         try {
74                                 $('r_last').disabled = true; $('r_all').disabled = true;        
75                                 g.circs = g.network.simple_request('FM_CIRC_RETRIEVE_VIA_COPY',
76                                         [ ses(), g.copy_id, g.count ]);
77                                 if (g.circs == null || typeof g.circs.ilsevent != 'undefined') throw(circs);
78                                 if (g.circs.length == 0) return;
79                                 g.circs = g.circs.reverse(); /* put the most recent at the top */
80                                 $('r_last').disabled = false; $('r_all').disabled = false;      
81
82                                 var gb = $('circs');
83                                 for (var j = 0; j < g.circs.length; j++) {
84                                         var iframe = document.createElement('iframe');
85                                         iframe.setAttribute('style','overflow: none; min-height: 100px;');
86                                         iframe.setAttribute('flex','1');
87                                         gb.appendChild(iframe);
88                                         iframe.setAttribute('src', urls.XUL_CIRC_BRIEF + '?circ_id=' + g.circs[j].id() );
89                                 }
90                         } catch(E) {
91                                 g.error.standard_unexpected_error_alert('error showing circs',E);
92                         }
93                 }
94
95                 function retrieve_last() {
96                         g.data.fancy_prompt_data = js2JSON( [ g.circs[0].usr() ] );
97                         g.data.stash('fancy_prompt_data');
98                         window.close();
99                 }
100
101                 function retrieve_all() {
102                         var patrons = []; var p_hash = {};
103                         for (var i = 0; i < g.circs.length; i++) {
104                                 var usr = g.circs[i].usr();
105                                 if (typeof p_hash[usr] != 'undefined') { continue; }
106                                 p_hash[usr] = true;
107                                 patrons.push( function(a){return a;}(usr) );
108                         }
109                         g.data.fancy_prompt_data = js2JSON(patrons);
110                         g.data.stash('fancy_prompt_data');
111                         window.close();
112                 }
113
114         ]]>
115         </script>
116
117         <vbox flex="1" style="overflow: auto;">
118                 <iframe id="top" style="overflow: auto;"/>
119                 <splitter><grippy/></splitter>
120                 <iframe id="mid" style="overflow: auto;"/>
121                 <splitter><grippy/></splitter>
122                 <groupbox flex="1" id="circs" style="overflow: auto;">
123                         <caption label="Last Few Circulations"/>
124                 </groupbox>
125                 <hbox>
126                         <button id="r_last" label="Retrieve Last Patron" accesskey="L" oncommand="retrieve_last();"/>
127                         <button id="r_all" label="Retrieve All These Patrons" accesskey="A" oncommand="retrieve_all();"/>
128                         <spacer flex="1"/>
129                         <button label="Done" accesskey="D" oncommand="window.close();"/>
130                 </hbox>
131         </vbox>
132
133 </window>
134