]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkin_overlay.xul
Retrieve last patron who circulated item action for checkin
[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                 <menuitem command="sel_last_patron" label="Retrieve Last Patron who circulated item" accesskey="R"/>
20                 <menuseparator/>
21                 <menuitem command="sel_edit" label="Edit Item Attributes" accesskey="E" />
22                 <menuseparator />
23                 <menuitem command="sel_mark_items_damaged" label="Mark Item Damaged" accesskey="D"/>
24                 <menuseparator />
25                 <menuitem command="sel_transit_abort" label="Abort Transit" />
26                 <menuseparator />
27                 <menuitem command="sel_spine" label="Print Spine Label" accesskey="P"/>
28                 <menuitem command="save_columns" label="Save Columns"/>
29         </popup>
30 </popupset>
31
32 <box id="checkin_main" flex="1" orient="vertical" class="my_overflow">
33         <vbox id="cmvb1" flex="1"/>
34 </box>
35
36 <vbox id="cmvb1" flex="1">
37         <hbox id="background" style="background-color: green;">
38                 <spacer flex="1"/>
39                 <vbox>
40                         <label id="background-text" value="Check In / Process Item" style="font-size: x-large; font-weight: bold;"/>
41                         <label id="hold_capture_blurb" hidden="true" value="(and Auto-Print Hold/Transit Slips)" style="font-size: large; font-weight: bold;"/>
42                 </vbox>
43                 <spacer flex="1"/>
44         </hbox>
45         <groupbox id="cmgb1" flex="2">
46                 <caption id="caption" label="&staff.circ.checkin.caption;" />
47                 <hbox id="checkin_top_ui" />
48                 <tree id="checkin_list" flex="1" enableColumnDrag="true" context="copy_status_actions" />
49                 <hbox id="checkin_bottom_ui" />
50         </groupbox>
51 </vbox>
52
53 <hbox id="checkin_top_ui">
54         <vbox>
55                 <hbox>
56                         <label id="checkin_scan_barcode_label" 
57                                 value="&staff.circ.checkin.scan_label;" 
58                                 accesskey="&staff.circ.checkin.scan_label.accesskey;" 
59                                 control="checkin_barcode_entry_textbox"/>
60                         <textbox id="checkin_barcode_entry_textbox"/>
61                         <button id="checkin_submit_barcode_button" 
62                                 label="&staff.circ.checkin.submit_label;" 
63                                 command="cmd_checkin_submit_barcode"
64                                 oldaccesskey="&staff.circ.checkin.submit_label.accesskey;"/>
65                 </hbox>
66                 <label id="no_change_label" value="" style="color: red" hidden="true"/>
67         </vbox>
68         <spacer flex="1"/>
69         <vbox>
70                 <hbox>
71                         <hbox id="checkin_effective_date_hbox">
72                                 <label id="checkin_effective_date_label" value="Effective Date:" control="checkin_effective_date_textbox" accesskey="D"/>
73                                 <textbox id="checkin_effective_date_textbox"/>
74                         </hbox>
75                         <menubar>
76                         <menu label="Actions for Selected Items" accesskey="S">
77                                 <menupopup>
78                                         <menuitem command="sel_clip" label="Copy to Clipboard" accesskey="C" />
79                                         <menuitem command="sel_bucket" label="Add to Item Bucket" accesskey="A"/>
80                                         <menuitem command="sel_opac" label="Show in Catalog" accesskey="S" />
81                                         <menuitem command="sel_copy_details" label="Show Item Details" accesskey="I" />
82                                         <menuitem command="sel_patron" label="Show Last Few Circulations" accesskey="L"/>
83                                         <menuitem command="sel_last_patron" label="Retrieve Last Patron who circulated item" accesskey="R"/>
84                                         <menuseparator />
85                                         <menuitem command="sel_edit" label="Edit Item Attributes" accesskey="E" />
86                                         <menuseparator />
87                                         <menuitem command="sel_mark_items_damaged" label="Mark Item Damaged" accesskey="D"/>
88                                         <menuseparator />
89                                         <menuitem command="sel_transit_abort" label="Abort Transit" />
90                                         <menuseparator />
91                                         <menuitem command="sel_spine" label="Print Spine Label" accesskey="P"/>
92                                         <menuitem command="save_columns" label="Save Columns"/>
93                                 </menupopup>
94                         </menu>
95                         </menubar>
96                 </hbox>
97         </vbox>
98
99 </hbox>
100
101 <hbox id="checkin_bottom_ui">
102         <button id="checkin_print" 
103                 label="&staff.checkin.print_receipt_label;" 
104                 command="cmd_checkin_print"
105                 accesskey="&staff.checkin.print_receipt_label.accesskey;"/>
106         <button id="checkin_export" 
107                 label="Export"
108                 command="cmd_checkin_export"
109                 accesskey=""/>
110         <checkbox id="trim_list" label="Trim List (20 rows)" checked="true" persist="checked"/> 
111         <checkbox id="strict_barcode" label="Strict Barcode" checked="false" persist="checked"/> 
112         <checkbox id="do_not_alert_on_precat" label="Don't Alert on Pre-Cat" persist="checked"/> 
113         <spacer id="pcii3s" flex="1"/>
114         <checkbox id="checkin_auto" label="Auto-Print for Hold/Transit Slips" accesskey="P" persist="checked"/> 
115 </hbox>
116
117 </overlay>