]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkout_overlay.xul
weirdness with overflow, and toward patron search
[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         <vbox id="cmvb1" flex="1"/>
12 </box>
13
14 <vbox id="cmvb1" flex="1">
15         <groupbox id="cmgb1" flex="2">
16                 <caption label="&staff.patron_navbar.checkout;" />
17                 <hbox id="checkout_top_ui" />
18                 <tree id="checkout_list" flex="1" enableColumnDrag="true"/>
19                 <hbox id="checkout_bottom_ui" />
20         </groupbox>
21 </vbox>
22
23 <hbox id="checkout_top_ui">
24         <label id="checkout_scan_barcode_label" 
25                 value="&staff.patron_display.checkout.scan_label;" 
26                 accesskey="&staff.patron_display.checkout.scan_label.accesskey;" 
27                 control="checkout_barcode_entry_textbox"/>
28         <textbox id="checkout_barcode_entry_textbox"/>
29         <button id="checkout_submit_barcode_button" 
30                 label="&staff.patron_display.checkout.submit_label;" 
31                 command="cmd_checkout_submit_barcode"
32                 accesskey="&staff.patron_display.checkout.submit_label.accesskey;"/>
33 </hbox>
34
35 <hbox id="checkout_bottom_ui">
36         <button id="checkout_print" 
37                 label="&staff.patron_display.checkout.print_receipt_label;" 
38                 command="cmd_checkout_print"
39                 accesskey="&staff.patron_display.checkout.print_receipt_label.accesskey;"/>
40         <button id="checkout_reprint" 
41                 label="&staff.patron_display.checkout.reprint_receipt_label;" 
42                 command="cmd_checkout_reprint"
43                 accesskey="&staff.patron_display.checkout.reprint_receipt_label.accesskey;"/>
44         <spacer id="pcii3s" flex="1"/>
45         <checkbox id="checkout_auto" 
46                 label="&staff.patron_display.checkout.auto_print_label;" 
47                 accesskey="&staff.patron_display.checkout.auto_print_label.accesskey;"/> 
48         <button id="checkout_done" 
49                 label="&staff.patron_display.checkout.done_label;" 
50                 command="cmd_checkout_done"
51                 accesskey="&staff.patron_display.checkout.done_label.accesskey;"/>
52 </hbox>
53
54 </overlay>