]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/bill_details.xul
LP#1086458: clean up after event listeners in circ/patron interface
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / patron / bill_details.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Patron 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/circ.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/${locale}/lang.dtd"-->
16 ]>
17
18 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
19 <!-- OVERLAYS -->
20 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
21 <?xul-overlay href="/xul/server/patron/bill_summary_overlay.xul"?>
22
23 <window id="bill_details_win" width="700" height="550" oils_persist="width height sizemode"
24     onload="try{ my_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
25     onunload="try { my_cleanup(); persist_helper_cleanup(); } catch(E) { alert(E); }"
26     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
27
28     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
29     <!-- BEHAVIOR -->
30         <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};</script>
31         <scripts id="openils_util_scripts"/>
32
33     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
34     <script type="text/javascript" src="bill_details.js"/>
35
36     <messagecatalog id="patronStrings" src="/xul/server/locale/<!--#echo var='locale'-->/patron.properties"/>
37
38     <vbox flex="1" class="my_overflow">
39         <label id="patron_name" class="patronNameLarge"/>
40
41         <groupbox orient="vertical" flex="1" id="summary" oils_persist="height"/>
42
43         <splitter id="splitter1" oils_persist="state hidden" oils_persist_peers="summary copy_summary_vbox"><grippy/></splitter>
44
45         <vbox id="copy_summary_vbox" flex="1" />
46
47         <splitter id="copy_summary_splitter" oils_persist="state hidden" oils_persist_peers="copy_summary_vbox after_copy_summary_splitter"><grippy/></splitter>
48
49             <groupbox id="after_copy_summary_splitter" oils_persist="height" orient="vertical" flex="2">
50                 <caption label="&staff.patron.bill_details.bills.label;" style="color: red"/>
51                 <tree id="bill_tree" flex="1" enableColumnDrag="true"/>
52                 <hbox>
53                     <hbox id="bill_list_actions" />
54                     <spacer flex="1"/>
55                     <button id="edit_bill_note" label="&staff.patron.bill_details.edit_notes.label;" disabled="true"/>
56                     <button id="void" label="&staff.patron.bill_details.void_selection.label;" disabled="true"/>
57                 </hbox>
58             </groupbox>
59
60             <splitter id="splitter2" oils_persist="state hidden" oils_persist_peers="after_copy_summary_splitter after_splitter2"><grippy/></splitter>
61
62             <groupbox orient="vertical" flex="2" id="after_splitter2" oils_persist="height">
63                 <caption label="&staff.patron.bill_details.payments.label;" style="color: green"/>
64                 <tree id="payment_tree" flex="1" enableColumnDrag="true"/>
65                 <hbox>
66                     <hbox id="payment_list_actions" />
67                     <spacer flex="1"/>
68                     <button id="edit_payment_note" label="&staff.patron.bill_details.edit_notes.label;" disabled="true"/>
69                 </hbox>
70             </groupbox>
71
72         <hbox>
73             <button id="opac" label="&staff.patron.bill_details.show_in_catalog.label;" accesskey="&staff.patron.bill_details.show_in_catalog.accesskey;" hidden="true"/>
74             <spacer flex="1"/>
75             <button label="&staff.patron.bill_details.close_window.label;" oncommand="window.close()" accesskey="&staff.patron.bill_details.close_window.accesskey;"/>
76         </hbox>
77     </vbox>
78
79
80 </window>
81