]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkin_overlay.xul
visual distinction between checkin/backdated checkin/in-house use/copy status
[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                 <stack flex="1">
32                         <vbox id="background" flex="1" style="background-color: green"/>
33                         <tree id="checkin_list" flex="1" enableColumnDrag="true" context="copy_status_actions" style="-moz-opacity: 0.5"/>
34                 </stack>
35                 <hbox id="checkin_bottom_ui" />
36         </groupbox>
37 </vbox>
38
39 <hbox id="checkin_top_ui">
40         <label id="checkin_scan_barcode_label" 
41                 value="&staff.circ.checkin.scan_label;" 
42                 accesskey="&staff.circ.checkin.scan_label.accesskey;" 
43                 control="checkin_barcode_entry_textbox"/>
44         <textbox id="checkin_barcode_entry_textbox"/>
45         <button id="checkin_submit_barcode_button" 
46                 label="&staff.circ.checkin.submit_label;" 
47                 command="cmd_checkin_submit_barcode"
48                 oldaccesskey="&staff.circ.checkin.submit_label.accesskey;"/>
49         <spacer flex="1"/>
50         <hbox id="checkin_effective_date_hbox">
51                 <label id="checkin_effective_date_label" value="Effective Date:" control="checkin_effective_date_textbox" accesskey="D"/>
52                 <textbox id="checkin_effective_date_textbox"/>
53         </hbox>
54         <menubar>
55         <menu label="Actions for Selected Items" accesskey="S">
56                 <menupopup>
57                         <menuitem command="sel_opac" label="Show in Catalog" accesskey="S" />
58                         <menuitem command="sel_patron" label="Show Last Few Circulations" accesskey="L"/>
59                         <menuitem command="sel_edit" label="Edit Item Attributes" accesskey="E" />
60                         <menuitem command="sel_transit_abort" label="Abort Transits" />
61                         <menuitem command="sel_bucket" label="Add to Item Bucket" accesskey="A"/>
62                         <menuitem command="sel_spine" label="Print Spine Label" accesskey="P"/>
63                 </menupopup>
64         </menu>
65         </menubar>
66
67
68 </hbox>
69
70 <hbox id="checkin_bottom_ui">
71         <button id="checkin_print" 
72                 label="&staff.checkin.print_receipt_label;" 
73                 command="cmd_checkin_print"
74                 accesskey="&staff.checkin.print_receipt_label.accesskey;"/>
75         <button id="checkin_reprint" 
76                 label="&staff.checkin.reprint_receipt_label;" 
77                 command="cmd_checkin_reprint"
78                 accesskey="&staff.checkin.reprint_receipt_label.accesskey;"/>
79         <spacer id="pcii3s" flex="1"/>
80         <checkbox id="checkin_auto" label="Auto-Print for Hold/Transit Slips" accesskey="P" persist="checked"/> 
81 <!--
82         <button id="checkin_done" 
83                 label="&staff.checkin.done_label;" 
84                 command="cmd_checkin_done"
85                 accesskey="&staff.checkin.done_label.accesskey;"/>
86 -->
87 </hbox>
88
89 </overlay>