]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/bill_details.xul
list actions made easy. Standardize the list actions for the bill details 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"
24         onload="try{ my_init(); font_helper(); } catch(E) { alert(E); }"
25         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
26
27         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
28         <!-- BEHAVIOR -->
29         <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};</script>
30         <scripts id="openils_util_scripts"/>
31
32         <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
33         <script type="text/javascript" src="bill_details.js"/>
34
35         <messagecatalog id="patronStrings" src="/xul/server/locale/<!--#echo var='locale'-->/patron.properties"/>
36
37         <vbox flex="1" class="my_overflow">
38                 <label id="patron_name" class="patronNameLarge"/>
39
40                 <groupbox orient="vertical" flex="1" id="summary" />
41
42                 <splitter><grippy/></splitter>
43
44         <vbox id="copy_summary_vbox" flex="1" />
45
46                 <splitter id="copy_summary_splitter"><grippy/></splitter>
47
48                         <groupbox orient="vertical" flex="2">
49                                 <caption label="&staff.patron.bill_details.bills.label;" style="color: red"/>
50                                 <tree id="bill_tree" flex="1" enableColumnDrag="true"/>
51                                 <hbox>
52                     <hbox id="bill_list_actions" />
53                                         <spacer flex="1"/>
54                                         <button id="void" label="&staff.patron.bill_details.void_selection.label;" disabled="true"/>
55                                 </hbox>
56                         </groupbox>
57
58                         <splitter><grippy/></splitter>
59
60                         <groupbox orient="vertical" flex="2">
61                                 <caption label="&staff.patron.bill_details.payments.label;" style="color: green"/>
62                                 <tree id="payment_tree" flex="1" enableColumnDrag="true"/>
63                                 <hbox>
64                     <hbox id="payment_list_actions" />
65                                         <spacer flex="1"/>
66                                 </hbox>
67                         </groupbox>
68
69                 <hbox>
70                         <button id="opac" label="&staff.patron.bill_details.show_in_catalog.label;" accesskey="&staff.patron.bill_details.show_in_catalog.accesskey;" hidden="true"/>
71                         <spacer flex="1"/>
72                         <button label="&staff.patron.bill_details.close_window.label;" oncommand="window.close()" accesskey="&staff.patron.bill_details.close_window.accesskey;"/>
73                 </hbox>
74         </vbox>
75
76
77 </window>
78