]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkout_overlay.xul
Include barcode in pre-cat confirm dialog
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / circ / checkout_overlay.xul
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE overlay PUBLIC "" ""[
3     <!--#include virtual="/opac/locale/${locale}/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         <vbox id="msg_area" />
21         <tree id="checkout_list" flex="1" enableColumnDrag="true"/>
22         <hbox id="checkout_bottom_ui" />
23     </groupbox>
24 </vbox>
25
26 <hbox id="checkout_top_ui">
27 <!--
28     <label id="checkout_scan_barcode.label" 
29         value="&staff.patron_display.checkout.scan.label;" 
30         accesskey="&staff.patron_display.checkout.scan.accesskey;" 
31         control="checkout_barcode_entry_textbox"/>
32 -->
33     <hbox id="checkout_menu_placeholder" flex="0"/>
34     <label accesskey="&staff.circ.checkout_overlay.barcode.accesskey;" control="checkout_barcode_entry_textbox"/>
35     <textbox id="checkout_barcode_entry_textbox" context="clipboard"/>
36     <button id="checkout_submit_barcode_button" 
37         label="&staff.patron_display.checkout.submit.label;" 
38         command="cmd_checkout_submit"
39         accesskey="&staff.patron_display.checkout.submit.accesskey;"/>
40     <spacer flex="1"/>
41     <hbox id="duedate_hbox">
42         <checkbox id="checkout_duedate_checkbox" label="&staff.circ.checkout_overlay.duedate.label;" accesskey="&staff.circ.checkout_overlay.duedate.accesskey;" oncommand="if (this.checked) { this.nextSibling.focus(); } else { document.getElementById('checkout_barcode_entry_textbox').focus(); }"/>
43         <datepicker id="checkout_duedate_datepicker" type="popup" />
44         <timepicker id="checkout_duedate_timepicker" type="popup" />
45     </hbox>
46 </hbox>
47
48 <hbox id="checkout_bottom_ui">
49     <button id="checkout_print" 
50         label="&staff.patron_display.checkout.print_receipt.label;" 
51         command="cmd_checkout_print"
52         accesskey="&staff.patron_display.checkout.print_receipt.accesskey;"/>
53     <button id="checkout_export" 
54         label="&staff.circ.checkout_overlay.export.label;"
55         command="cmd_checkout_export"
56         accesskey="&staff.circ.checkout_overlay.export.accesskey;"/>
57     <button id="clip_button" disabled="true" command="sel_clip" label="&staff.circ.checkout_overlay.sel_clip.label;" />
58     <button id="save_col_btn" command="save_columns" label="&staff.circ.checkout_overlay.save_columns.label;" />
59     <checkbox id="strict_barcode" label="&staff.circ.checkout_overlay.strict_barcode.label;" checked="false" oils_persist="checked"/> 
60     <spacer id="pcii3s" flex="1"/>
61     <checkbox id="checkout_auto" oils_persist="checked"
62         label="&staff.patron_display.checkout.auto_print.label;" 
63         accesskey_old="&staff.patron_display.checkout.auto_print.accesskey;"/> 
64     <button id="checkout_done" 
65         label="&staff.patron_display.checkout.done.label;" 
66         command="cmd_checkout_done"
67         accesskey="&staff.patron_display.checkout.done.accesskey;"/>
68 </hbox>
69
70 </overlay>