]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkout_overlay.xul
column persistence in other interfaces
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / circ / checkout_overlay.xul
1 <?xml version="1.0"?>
2 <!DOCTYPE overlay PUBLIC "" ""[
3         <!--#include virtual="/opac/locale/en-US/lang.dtd"-->
4 ]>
5 <overlay id="checkout_overlay" 
6         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
7
8 <script>dump('loading checkout_overlay.xul\n');</script>
9
10 <commandset id="checkout_cmds" />
11
12 <box id="checkout_main" flex="1" orient="vertical" class="my_overflow">
13         <vbox id="cmvb1" flex="1"/>
14 </box>
15
16 <vbox id="cmvb1" flex="1">
17         <groupbox id="cmgb1" flex="2">
18                 <caption label="&staff.patron_navbar.checkout;" />
19                 <hbox id="checkout_top_ui" />
20                 <tree id="checkout_list" flex="1" enableColumnDrag="true"/>
21                 <hbox id="checkout_bottom_ui" />
22         </groupbox>
23 </vbox>
24
25 <hbox id="checkout_top_ui">
26 <!--
27         <label id="checkout_scan_barcode_label" 
28                 value="&staff.patron_display.checkout.scan_label;" 
29                 accesskey="&staff.patron_display.checkout.scan_label.accesskey;" 
30                 control="checkout_barcode_entry_textbox"/>
31 -->
32         <hbox id="checkout_menu_placeholder" flex="0"/>
33         <label accesskey="C" control="checkout_barcode_entry_textbox"/>
34         <textbox id="checkout_barcode_entry_textbox"/>
35         <button id="checkout_submit_barcode_button" 
36                 label="&staff.patron_display.checkout.submit_label;" 
37                 command="cmd_checkout_submit"
38                 accesskey="&staff.patron_display.checkout.submit_label.accesskey;"/>
39         <spacer flex="1"/>
40         <hbox id="duedate_hbox">
41                 <label value="Due Date" accesskey="u" control="checkout_duedate_menu"/>
42                 <menulist id="checkout_duedate_menu" editable="true">
43                         <menupopup>
44                                 <menuitem label="Normal" selected="true"/>
45                                 <menuitem label="Today + 3 days" />
46                                 <menuitem label="Today + 7 days" />
47                                 <menuitem label="Today + 14 days" />
48                                 <menuitem label="Today + 30 days" />
49                         </menupopup>
50                 </menulist>
51         </hbox>
52 </hbox>
53
54 <hbox id="checkout_bottom_ui">
55         <button id="checkout_print" 
56                 label="&staff.patron_display.checkout.print_receipt_label;" 
57                 command="cmd_checkout_print"
58                 accesskey="&staff.patron_display.checkout.print_receipt_label.accesskey;"/>
59         <button id="checkout_reprint" 
60                 label="&staff.patron_display.checkout.reprint_receipt_label;" 
61                 command="cmd_checkout_reprint"
62                 accesskey="&staff.patron_display.checkout.reprint_receipt_label.accesskey;"/>
63         <button id="clip_button" disabled="true" command="sel_clip" label="Copy to Clipboard" />
64         <button id="save_col_btn" command="save_columns" label="Save Columns" />
65         <spacer id="pcii3s" flex="1"/>
66         <checkbox id="checkout_auto" persist="checked"
67                 label="&staff.patron_display.checkout.auto_print_label;" 
68                 accesskey_old="&staff.patron_display.checkout.auto_print_label.accesskey;"/> 
69         <button id="checkout_done" 
70                 label="&staff.patron_display.checkout.done_label;" 
71                 command="cmd_checkout_done"
72                 accesskey="&staff.patron_display.checkout.done_label.accesskey;"/>
73 </hbox>
74
75 </overlay>