]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/bill2.xul
Another monster patch. Change each tab to 4 spaces in the staff client xul, html...
[Evergreen.git] / Open-ILS / xul / staff_client / server / patron / bill2.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_interface_win" width="700" height="550" oils_persist="sizemode width height"
24     onload="try{ my_init(); font_helper(); persist_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="bill2.js"/>
34
35     <messagecatalog id="patronStrings" src="/xul/server/locale/<!--#echo var='locale'-->/patron.properties"/>
36     <messagecatalog id="circStrings" src="/xul/server/locale/<!--#echo var='locale'-->/circ.properties"/>
37
38     <commandset>
39         <command id="opac" disabled="true"/>
40         <command id="voidall" disabled="true"/>
41         <command id="refund" disabled="true"/>
42         <command id="add" disabled="true"/>
43         <command id="details" disabled="true"/>
44     </commandset>
45
46     <popupset>
47         <popup id="actions_popup">
48             <menuitem command="opac" label="&staff.patron.bill_interface.show_in_catalog.label;" accesskey="&staff.patron.bill_interface.show_in_catalog.accesskey;" oncommand="alert('Not Yet Implemented');"/>
49             <menuitem command="voidall" label="Void All Billings" accesskey="" />
50             <menuitem command="refund" label="Refund" accesskey="" />
51             <menuitem command="add" label="&staff.patron.bill_interface.add_billing.label;" accesskey="" />
52             <menuitem command="details" label="&staff.patron.bill_interface.full_details.label;" accesskey="&staff.patron.bill_interface.full_details.accesskey;"/>
53         </popup>
54     </popupset>
55
56     <vbox flex="1" class="my_overflow">
57         <groupbox orient="vertical" flex="1">
58             <caption id="caption" label="&staff.patron.bill_interface.caption.label;"/>
59             <hbox>
60                 <grid flex="1">
61                     <columns flex="1">
62                         <column/>
63                         <column/>
64                         <column flex="1"/>
65                         <column/>
66                         <column/>
67                     </columns>
68                     <rows>
69                         <row>
70                             <vbox pack="center"><label value="Total Owed:" class="big_emphasis1" /></vbox><vbox pack="center"><label id="total_owed2" class="big_emphasis1"/></vbox>
71                             <spacer flex="1"/>
72                             <vbox pack="center"><label value="Refunds Available:" class="big_emphasis2"/></vbox><vbox pack="center"><label id="refunds_owed" class="big_emphasis2"/></vbox>
73                         </row>
74                         <row>
75                             <vbox pack="center"><label value="Total Checked:" class="big_emphasis1" /></vbox><vbox pack="center"><label id="checked_owed2" class="big_emphasis1"/></vbox>
76                             <spacer flex="1"/>
77                             <vbox pack="center"><label value='Credit Available:' class="big_emphasis2"/></vbox><vbox pack="center"><label id="credit_forward" class="big_emphasis2"/></vbox>
78                         </row>
79                     </rows>
80                 </grid>
81                 <spacer flex="1"/>
82                 <groupbox>
83                     <caption label="Pay Bill"/>
84                     <grid>
85                         <columns>
86                             <column/>
87                             <column/>
88                         </columns>
89                         <rows>
90                             <row>
91                                 <label value="Payment Type:" class="emphasis1" accesskey="T" control="payment_type"/>
92                                 <menulist id="payment_type">
93                                     <menupopup id="payment_type_menupopup">
94                                         <menuitem id="payment_type_menuitem1" label="&staff.patron.bills_overlay.cash.label;" value="cash_payment"/>
95                                         <menuitem id="payment_type_menuitem2" label="&staff.patron.bills_overlay.check.label;" value="check_payment"/>
96                                         <menuitem id="payment_type_menuitem3" label="&staff.patron.bills_overlay.credit_card.label;" value="credit_card_payment"/>
97                                         <menuitem id="payment_type_menuitem4" label="Patron Credit" value="credit_payment" />
98                                         <menuitem id="payment_type_menuitem5" label="&staff.patron.bills_overlay.word.label;" value="work_payment"/>
99                                         <menuitem id="payment_type_menuitem6" label="&staff.patron.bills_overlay.forgive.label;" value="forgive_payment"/>
100                                         <menuitem id="payment_type_menuitem7" label="&staff.patron.bills_overlay.goods.label;" value="goods_payment"/>
101                                     </menupopup>
102                                 </menulist>
103                             </row>
104                             <row>
105                                 <label value="Payment Received:" class="emphasis1" />
106                                 <hbox><textbox id="payment" size="6"/></hbox>
107                             </row>
108                         </rows>
109                     </grid>
110                     <hbox>
111                         <checkbox id="annotate_payment" label="&staff.patron.bills_overlay.annotate_payment.label;" accesskey="n" oils_persist="checked" checked="false" oncommand="default_focus();"/>
112                         <button label="See Distribution" accesskey="D" oncommand="default_focus();"/>
113                         <button label="Apply Payment" accesskey="P"/>
114                     </hbox>
115                 </groupbox>
116             </hbox>
117             <splitter />
118             <hbox>
119                 <button label="Bill Patron" accesskey="" />
120                 <button label="History" accesskey="" />
121                 <spacer flex="1"/>
122                 <menubar>
123                     <menu label="Actions for Selected Rows" accesskey="A">
124                         <menupopup>
125                             <menuitem command="opac" label="&staff.patron.bill_interface.show_in_catalog.label;" accesskey="&staff.patron.bill_interface.show_in_catalog.accesskey;" oncommand="alert('Not Yet Implemented');"/>
126                             <menuitem command="voidall" label="Void All Billings" accesskey="V" />
127                             <menuitem command="refund" label="Refund" accesskey="R" />
128                             <menuitem command="add" label="&staff.patron.bill_interface.add_billing.label;" accesskey="A" />
129                             <menuitem command="details" label="&staff.patron.bill_interface.full_details.label;" accesskey="&staff.patron.bill_interface.full_details.accesskey;"/>
130                         </menupopup>
131                     </menu>
132                 </menubar>
133             </hbox>
134             <tree id="bill_tree" flex="1" enableColumnDrag="true" seltype="multiple" editable="true" context="actions_popup"/>
135             <hbox>
136                 <hbox id="bill_list_actions" />
137                 <button label="Check All" oncommand="g.bill_list._toggle_checkbox_column({'id':'select'},'on');"/>
138                 <button label="Uncheck All" oncommand="g.bill_list._toggle_checkbox_column({'id':'select'},'off');"/>
139                 <button label="Check All Refunds" oncommand="check_all_refunds();"/>
140                 <button id="print" label="Print Bills" oncommand="print_bills();"/>
141                 <spacer flex="1"/>
142                 <button label="Receipt Options" type="menu">
143                     <menupopup>
144                         <menuitem type="checkbox" label="Receipt Upon Payment" checked="true"/>
145                         <menuitem type="checkbox" label="Printer Prompt" />
146                         <hbox style="border: solid thin black">
147                             <vbox pack="center">
148                                 <label value="Number of Copies:" />
149                             </vbox>
150                             <vbox pack="center">
151                                 <textbox id="num_of_receipts" value="1" type="number" min="0" size="2"/>
152                             </vbox>
153                         </hbox>
154                     </menupopup>
155                 </button>
156             </hbox>
157             <splitter />
158             <hbox>
159                 <vbox>
160                     <hbox>
161                         <label value='&staff.patron.bill_interface.voided_this_session.label;' class="emphasis1"/><label id="currently_voided" value="$0.00"/>
162                     </hbox>
163                     <hbox><label value='Change Due Upon Payment:' class="big_emphasis1"/><label id="change_due" value="$0.00" class="big_emphasis1"/></hbox>
164                 </vbox>
165                 <spacer flex="1"/>
166                 <grid>
167                     <columns>
168                         <column />
169                         <column />
170                     </columns>
171                     <rows>
172                         <row>
173                             <spacer />
174                             <label id="pending_payment_label" value="Payment" class="emphasis1" />
175                             <label id="pending_change_label" value="Change" class="emphasis1" />
176                         </row>
177                         <row>
178                             <label id="pending_label" value="Pending" class="emphasis1" />
179                             <hbox><textbox id="pending_payment" readonly="true" context="clipboard" size="6" value='$0.00'/></hbox>
180                             <hbox><textbox id="pending_change" readonly="true" context="clipboard" size="6" value='$0.00'/></hbox>
181                         </row>
182                     </rows>
183                 </grid>
184                 <grid>
185                     <columns>
186                         <column />
187                         <column />
188                     </columns>
189                     <rows>
190                         <row>
191                             <spacer />
192                             <label id="owed_label" value="Owed" control="total_owed" class="emphasis1"/>
193                             <label id="billed_label" value="Billed" control="total_billed" class="emphasis2"/>
194                             <label id="paid_label" value="Paid" control="total_paid" class="emphasis2"/>
195                         </row>
196                         <row>
197                             <label id="total_label" value="Total:" control="total_owed" class="emphasis1"/>
198                             <hbox><textbox id="total_owed" readonly="true" context="clipboard" size="6"/></hbox>
199                             <hbox><textbox id="total_billed" readonly="true" context="clipboard" size="6"/></hbox>
200                             <hbox><textbox id="total_paid" readonly="true" context="clipboard" size="6"/></hbox>
201                         </row>
202                         <row>
203                             <label id="checked_label" value="Checked:" control="checked_owed" class="emphasis2"/>
204                             <hbox><textbox id="checked_owed" readonly="true" context="clipboard" size="6"/></hbox>
205                             <hbox><textbox id="checked_billed" readonly="true" context="clipboard" size="6"/></hbox>
206                             <hbox><textbox id="checked_paid" readonly="true" context="clipboard" size="6"/></hbox>
207                         </row>
208                     </rows>
209                 </grid>
210             </hbox>
211         </groupbox>
212     </vbox>
213
214 </window>
215