]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkin_overlay.xul
style for the different item barcode scan interfaces
[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         <hbox id="background" style="background-color: green;">
35                 <spacer flex="1"/>
36                 <vbox>
37                         <label id="background-text" value="Check In / Process Item" style="font-size: x-large; font-weight: bold;"/>
38                         <label id="hold_capture_blurb" hidden="true" value="(and Auto-Print Hold/Transit Slips)" style="font-size: large; font-weight: bold;"/>
39                 </vbox>
40                 <spacer flex="1"/>
41         </hbox>
42         <groupbox id="cmgb1" flex="2">
43                 <caption id="caption" label="&staff.circ.checkin.caption;" />
44                 <hbox id="checkin_top_ui" />
45                 <tree id="checkin_list" flex="1" enableColumnDrag="true" context="copy_status_actions" />
46                 <hbox id="checkin_bottom_ui" />
47         </groupbox>
48 </vbox>
49
50 <hbox id="checkin_top_ui">
51         <vbox>
52                 <hbox>
53                         <label id="checkin_scan_barcode_label" 
54                                 value="&staff.circ.checkin.scan_label;" 
55                                 accesskey="&staff.circ.checkin.scan_label.accesskey;" 
56                                 control="checkin_barcode_entry_textbox"/>
57                         <textbox id="checkin_barcode_entry_textbox"/>
58                         <button id="checkin_submit_barcode_button" 
59                                 label="&staff.circ.checkin.submit_label;" 
60                                 command="cmd_checkin_submit_barcode"
61                                 oldaccesskey="&staff.circ.checkin.submit_label.accesskey;"/>
62                 </hbox>
63                 <label id="no_change_label" value="" style="color: red" hidden="true"/>
64         </vbox>
65         <spacer flex="1"/>
66         <vbox>
67                 <hbox>
68                         <hbox id="checkin_effective_date_hbox">
69                                 <label id="checkin_effective_date_label" value="Effective Date:" control="checkin_effective_date_textbox" accesskey="D"/>
70                                 <textbox id="checkin_effective_date_textbox"/>
71                         </hbox>
72                         <menubar>
73                         <menu label="Actions for Selected Items" accesskey="S">
74                                 <menupopup>
75                                         <menuitem command="sel_clip" label="Copy to Clipboard" accesskey="C" />
76                                         <menuitem command="sel_bucket" label="Add to Item Bucket" accesskey="A"/>
77                                         <menuitem command="sel_opac" label="Show in Catalog" accesskey="S" />
78                                         <menuitem command="sel_copy_details" label="Show Item Details" accesskey="I" />
79                                         <menuitem command="sel_patron" label="Show Last Few Circulations" accesskey="L"/>
80                                         <menuseparator />
81                                         <menuitem command="sel_edit" label="Edit Item Attributes" accesskey="E" />
82                                         <menuitem command="sel_transit_abort" label="Abort Transits" />
83                                         <menuseparator />
84                                         <menuitem command="sel_spine" label="Print Spine Label" accesskey="P"/>
85                                         <menuseparator />
86                                         <menuitem command="save_columns" label="Save Columns"/>
87                                 </menupopup>
88                         </menu>
89                         </menubar>
90                 </hbox>
91         </vbox>
92
93 </hbox>
94
95 <hbox id="checkin_bottom_ui">
96         <button id="checkin_print" 
97                 label="&staff.checkin.print_receipt_label;" 
98                 command="cmd_checkin_print"
99                 accesskey="&staff.checkin.print_receipt_label.accesskey;"/>
100         <button id="checkin_reprint" 
101                 label="&staff.checkin.reprint_receipt_label;" 
102                 command="cmd_checkin_reprint"
103                 accesskey="&staff.checkin.reprint_receipt_label.accesskey;"/>
104         <spacer id="pcii3s" flex="1"/>
105         <checkbox id="checkin_auto" label="Auto-Print for Hold/Transit Slips" accesskey="P" persist="checked"/> 
106 <!--
107         <button id="checkin_done" 
108                 label="&staff.checkin.done_label;" 
109                 command="cmd_checkin_done"
110                 accesskey="&staff.checkin.done_label.accesskey;"/>
111 -->
112 </hbox>
113
114 </overlay>