]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkin_overlay.xul
cosmetic
[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_bucket" label="Add to Item Bucket" accesskey="A"/>
16                 <menuitem command="sel_opac" label="Show in Catalog" accesskey="S" />
17                 <menuitem command="sel_copy_details" label="Show Item Details" accesskey="I" />
18                 <menuitem command="sel_patron" label="Show Last Few Circulations" accesskey="L"/>
19                 <menuseparator/>
20                 <menuitem command="sel_edit" label="Edit Item Attributes" accesskey="E" />
21                 <menuitem command="sel_transit_abort" label="Abort Transits" />
22                 <menuseparator />
23                 <menuitem command="sel_spine" label="Print Spine Label" accesskey="P"/>
24                 <menuseparator />
25                 <menuitem command="save_columns" label="Save Columns"/>
26         </popup>
27 </popupset>
28
29 <box id="checkin_main" flex="1" orient="vertical" class="my_overflow">
30         <vbox id="cmvb1" flex="1"/>
31 </box>
32
33 <vbox id="cmvb1" flex="1">
34         <groupbox id="cmgb1" flex="2">
35                 <caption id="caption" label="&staff.circ.checkin.caption;" />
36                 <hbox id="checkin_top_ui" />
37                 <stack flex="1">
38                         <vbox id="background" flex="1" style="background-color: green"/>
39                         <tree id="checkin_list" flex="1" enableColumnDrag="true" context="copy_status_actions" class="circ_opacity"/>
40                 </stack>
41                 <hbox id="checkin_bottom_ui" />
42         </groupbox>
43 </vbox>
44
45 <hbox id="checkin_top_ui">
46         <label id="checkin_scan_barcode_label" 
47                 value="&staff.circ.checkin.scan_label;" 
48                 accesskey="&staff.circ.checkin.scan_label.accesskey;" 
49                 control="checkin_barcode_entry_textbox"/>
50         <textbox id="checkin_barcode_entry_textbox"/>
51         <button id="checkin_submit_barcode_button" 
52                 label="&staff.circ.checkin.submit_label;" 
53                 command="cmd_checkin_submit_barcode"
54                 oldaccesskey="&staff.circ.checkin.submit_label.accesskey;"/>
55         <spacer flex="1"/>
56         <hbox id="checkin_effective_date_hbox">
57                 <label id="checkin_effective_date_label" value="Effective Date:" control="checkin_effective_date_textbox" accesskey="D"/>
58                 <textbox id="checkin_effective_date_textbox"/>
59         </hbox>
60         <menubar>
61         <menu label="Actions for Selected Items" accesskey="S">
62                 <menupopup>
63                         <menuitem command="sel_clip" label="Copy to Clipboard" accesskey="C" />
64                         <menuitem command="sel_bucket" label="Add to Item Bucket" accesskey="A"/>
65                         <menuitem command="sel_opac" label="Show in Catalog" accesskey="S" />
66                         <menuitem command="sel_copy_details" label="Show Item Details" accesskey="I" />
67                         <menuitem command="sel_patron" label="Show Last Few Circulations" accesskey="L"/>
68                         <menuseparator />
69                         <menuitem command="sel_edit" label="Edit Item Attributes" accesskey="E" />
70                         <menuitem command="sel_transit_abort" label="Abort Transits" />
71                         <menuseparator />
72                         <menuitem command="sel_spine" label="Print Spine Label" accesskey="P"/>
73                         <menuseparator />
74                         <menuitem command="save_columns" label="Save Columns"/>
75                 </menupopup>
76         </menu>
77         </menubar>
78
79
80 </hbox>
81
82 <hbox id="checkin_bottom_ui">
83         <button id="checkin_print" 
84                 label="&staff.checkin.print_receipt_label;" 
85                 command="cmd_checkin_print"
86                 accesskey="&staff.checkin.print_receipt_label.accesskey;"/>
87         <button id="checkin_reprint" 
88                 label="&staff.checkin.reprint_receipt_label;" 
89                 command="cmd_checkin_reprint"
90                 accesskey="&staff.checkin.reprint_receipt_label.accesskey;"/>
91         <spacer id="pcii3s" flex="1"/>
92         <checkbox id="checkin_auto" label="Auto-Print for Hold/Transit Slips" accesskey="P" persist="checked"/> 
93 <!--
94         <button id="checkin_done" 
95                 label="&staff.checkin.done_label;" 
96                 command="cmd_checkin_done"
97                 accesskey="&staff.checkin.done_label.accesskey;"/>
98 -->
99 </hbox>
100
101 </overlay>