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