]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkout_overlay.xul
column drag
[Evergreen.git] / Open-ILS / xul / staff_client / server / circ / checkout_overlay.xul
1 <?xml version="1.0"?>
2 <!DOCTYPE overlay SYSTEM "chrome://evergreen/locale/lang.dtd">
3 <overlay id="checkout_overlay" 
4         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
5
6 <script>dump('loading checkout_overlay.xul\n');</script>
7
8 <commandset id="checkout_cmds" />
9
10 <box id="checkout_main" flex="1" orient="vertical" class="my_overflow">
11
12         <groupbox id="cmgb1" flex="2">
13                 <caption label="&staff.patron_navbar.checkout;" />
14                 <hbox id="checkout_top_ui" />
15                 <tree id="checkout_list" flex="1" enableColumnDrag="true"/>
16                 <hbox id="checkout_bottom_ui" />
17         </groupbox>
18
19 </box>
20
21 <hbox id="checkout_top_ui">
22         <label id="checkout_scan_barcode_label" 
23                 value="&staff.patron_display.checkout.scan_label;" 
24                 accesskey="&staff.patron_display.checkout.scan_label.accesskey;" 
25                 control="checkout_barcode_entry_textbox"/>
26         <textbox id="checkout_barcode_entry_textbox"/>
27         <button id="checkout_submit_barcode_button" 
28                 label="&staff.patron_display.checkout.submit_label;" 
29                 command="cmd_checkout_submit_barcode"
30                 accesskey="&staff.patron_display.checkout.submit_label.accesskey;"/>
31 </hbox>
32
33 <hbox id="checkout_bottom_ui">
34         <button id="checkout_print" 
35                 label="&staff.patron_display.checkout.print_receipt_label;" 
36                 command="cmd_checkout_print"
37                 accesskey="&staff.patron_display.checkout.print_receipt_label.accesskey;"/>
38         <button id="checkout_reprint" 
39                 label="&staff.patron_display.checkout.reprint_receipt_label;" 
40                 command="cmd_checkout_reprint"
41                 accesskey="&staff.patron_display.checkout.reprint_receipt_label.accesskey;"/>
42         <spacer id="pcii3s" flex="1"/>
43         <checkbox id="checkout_auto" 
44                 label="&staff.patron_display.checkout.auto_print_label;" 
45                 accesskey="&staff.patron_display.checkout.auto_print_label.accesskey;"/> 
46         <button id="checkout_done" 
47                 label="&staff.patron_display.checkout.done_label;" 
48                 command="cmd_checkout_done"
49                 accesskey="&staff.patron_display.checkout.done_label.accesskey;"/>
50 </hbox>
51
52 </overlay>