]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkin_overlay.xul
clipboard
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / circ / checkin_overlay.xul
1 <?xml version="1.0"?>
2 <!DOCTYPE overlay PUBLIC "" ""[
3         <!--#include virtual="/opac/locale/en-US/lang.dtd"-->
4 ]>
5 <overlay id="checkin_overlay" 
6         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
7
8 <script>dump('loading checkin_overlay.xul\n');</script>
9
10 <commandset id="checkin_cmds" />
11
12 <popupset id="copy_status_popupset">
13         <popup id="copy_status_actions" position="at_pointer"> 
14                 <menuitem command="sel_clip" label="Copy to Clipboard" accesskey="C" />
15                 <menuitem command="sel_opac" label="Show in Catalog" accesskey="S" />
16                 <menuitem command="sel_patron" label="Show Last Few Circulations" accesskey="L"/>
17                 <menuitem command="sel_edit" label="Edit Item Attributes" accesskey="E" />
18                 <menuitem command="sel_transit_abort" label="Abort Transits" />
19                 <menuitem command="sel_bucket" label="Add to Item Bucket" accesskey="A"/>
20                 <menuitem command="sel_spine" label="Print Spine Label" accesskey="P"/>
21         </popup>
22 </popupset>
23
24 <box id="checkin_main" flex="1" orient="vertical" class="my_overflow">
25         <vbox id="cmvb1" flex="1"/>
26 </box>
27
28 <vbox id="cmvb1" flex="1">
29         <groupbox id="cmgb1" flex="2">
30                 <caption id="caption" label="&staff.circ.checkin.caption;" />
31                 <hbox id="checkin_top_ui" />
32                 <stack flex="1">
33                         <vbox id="background" flex="1" style="background-color: green"/>
34                         <tree id="checkin_list" flex="1" enableColumnDrag="true" context="copy_status_actions" class="circ_opacity"/>
35                 </stack>
36                 <hbox id="checkin_bottom_ui" />
37         </groupbox>
38 </vbox>
39
40 <hbox id="checkin_top_ui">
41         <label id="checkin_scan_barcode_label" 
42                 value="&staff.circ.checkin.scan_label;" 
43                 accesskey="&staff.circ.checkin.scan_label.accesskey;" 
44                 control="checkin_barcode_entry_textbox"/>
45         <textbox id="checkin_barcode_entry_textbox"/>
46         <button id="checkin_submit_barcode_button" 
47                 label="&staff.circ.checkin.submit_label;" 
48                 command="cmd_checkin_submit_barcode"
49                 oldaccesskey="&staff.circ.checkin.submit_label.accesskey;"/>
50         <spacer flex="1"/>
51         <hbox id="checkin_effective_date_hbox">
52                 <label id="checkin_effective_date_label" value="Effective Date:" control="checkin_effective_date_textbox" accesskey="D"/>
53                 <textbox id="checkin_effective_date_textbox"/>
54         </hbox>
55         <menubar>
56         <menu label="Actions for Selected Items" accesskey="S">
57                 <menupopup>
58                         <menuitem command="sel_clip" label="Copy to Clipboard" accesskey="C" />
59                         <menuitem command="sel_opac" label="Show in Catalog" accesskey="S" />
60                         <menuitem command="sel_patron" label="Show Last Few Circulations" accesskey="L"/>
61                         <menuitem command="sel_edit" label="Edit Item Attributes" accesskey="E" />
62                         <menuitem command="sel_transit_abort" label="Abort Transits" />
63                         <menuitem command="sel_bucket" label="Add to Item Bucket" accesskey="A"/>
64                         <menuitem command="sel_spine" label="Print Spine Label" accesskey="P"/>
65                 </menupopup>
66         </menu>
67         </menubar>
68
69
70 </hbox>
71
72 <hbox id="checkin_bottom_ui">
73         <button id="checkin_print" 
74                 label="&staff.checkin.print_receipt_label;" 
75                 command="cmd_checkin_print"
76                 accesskey="&staff.checkin.print_receipt_label.accesskey;"/>
77         <button id="checkin_reprint" 
78                 label="&staff.checkin.reprint_receipt_label;" 
79                 command="cmd_checkin_reprint"
80                 accesskey="&staff.checkin.reprint_receipt_label.accesskey;"/>
81         <spacer id="pcii3s" flex="1"/>
82         <checkbox id="checkin_auto" label="Auto-Print for Hold/Transit Slips" accesskey="P" persist="checked"/> 
83 <!--
84         <button id="checkin_done" 
85                 label="&staff.checkin.done_label;" 
86                 command="cmd_checkin_done"
87                 accesskey="&staff.checkin.done_label.accesskey;"/>
88 -->
89 </hbox>
90
91 </overlay>