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