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