]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/items_overlay.xul
renew all and some other sanity checks against glitchy xul
[Evergreen.git] / Open-ILS / xul / staff_client / server / patron / items_overlay.xul
1 <?xml version="1.0"?>
2 <!DOCTYPE overlay PUBLIC "" ""[
3         <!--#include virtual="/opac/locale/en-US/lang.dtd"-->
4 ]>
5 <overlay id="items_overlay" 
6         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
7
8 <script>dump('loading items_overlay.xul\n');</script>
9
10 <commandset id="items_cmds" />
11
12 <popupset id="items_popupset">
13         <popup id="items_actions" position="at_pointer"> 
14                 <menuitem label="Show in Catalog" command="cmd_show_catalog" />
15                 <menuitem label="Edit Due Date" command="cmd_items_edit" />
16                 <menuitem label="Mark Lost (by Patron)" command="cmd_items_mark_lost" />
17                 <menuitem label="Mark Claimed Returned" command="cmd_items_claimed_returned" />
18                 <menuitem label="Renew" command="cmd_items_renew" />
19                 <menuitem label="Renew All" command="cmd_items_renew_all" hidden="false"/>
20                 <menuitem label="Check In" command="cmd_items_checkin" />
21                 <menuitem label="Add Billing" command="cmd_add_billing" />
22         </popup>
23         <popup id="items_actions2" position="at_pointer"> 
24                 <menuitem label="Show in Catalog" command="cmd_show_catalog2" />
25                 <menuitem label="Edit Due Date" command="cmd_items_edit2" />
26                 <menuitem label="Mark Lost (by Patron)" command="cmd_items_mark_lost2" />
27                 <menuitem label="Mark Claimed Returned" command="cmd_items_claimed_returned2" />
28                 <menuitem label="Renew" command="cmd_items_renew2" />
29                 <menuitem label="Check In" command="cmd_items_checkin2" />
30                 <menuitem label="Add Billing" command="cmd_add_billing2" />
31         </popup>
32
33 </popupset>
34
35
36 <box id="items_main" flex="1" orient="vertical" class="my_overflow">
37         <vbox id="cmvb1" flex="1"/>
38 </box>
39
40 <vbox id="cmvb1" flex="1">
41         <groupbox id="cmgb1" flex="1">
42                 <caption label="&staff.patron_navbar.items;" />
43                 <vbox flex="0">
44                         <hbox id="items_top_ui" />
45                 </vbox>
46                 <tree id="items_list" flex="1" enableColumnDrag="true" context="items_actions"/>
47                 <vbox flex="0">
48                         <hbox id="items_bottom_ui" />
49                 </vbox>
50         </groupbox>
51         <splitter><grippy/></splitter>
52         <groupbox flex="1">
53                 <caption label="Lost / Claimed Returned / Long Overdue" />
54                 <vbox flex="0">
55                         <hbox id="items_top_ui2" />
56                 </vbox>
57                 <tree id="items_list2" flex="1" enableColumnDrag="true" context="items_actions2"/>
58                 <vbox flex="0">
59                         <hbox id="items_bottom_ui2" />
60                 </vbox>
61         </groupbox>
62 </vbox>
63
64 <hbox id="items_top_ui" flex="1">
65         <spacer id="pcii3s" flex="1"/>
66         <menubar>
67                 <menu label="Actions for Selected Items" accesskey="S">
68                         <menupopup>
69                                 <menuitem label="Show in Catalog" command="cmd_show_catalog" />
70                                 <menuitem label="Edit Due Date" command="cmd_items_edit" />
71                                 <menuitem label="Mark Lost (by Patron)" command="cmd_items_mark_lost" />
72                                 <menuitem label="Mark Claimed Returned" command="cmd_items_claimed_returned" />
73                                 <menuitem label="Renew" command="cmd_items_renew" />
74                                 <menuitem label="Renew All" command="cmd_items_renew_all" hidden="false"/>
75                                 <menuitem label="Check In" command="cmd_items_checkin" />
76                                 <menuitem label="Add Billing" command="cmd_add_billing" />
77                         </menupopup>
78                 </menu>
79         </menubar>
80 </hbox>
81
82 <hbox id="items_top_ui2" flex="1">
83         <spacer id="pcii3s2" flex="1"/>
84         <menubar>
85                 <menu label="Actions for Selected Items" old_accesskey="S">
86                         <menupopup>
87                                 <menuitem label="Show in Catalog" command="cmd_show_catalog2" />
88                                 <menuitem label="Edit Due Date" command="cmd_items_edit2" />
89                                 <menuitem label="Mark Lost (by Patron)" command="cmd_items_mark_lost2" />
90                                 <menuitem label="Mark Claimed Returned" command="cmd_items_claimed_returned2" />
91                                 <menuitem label="Renew" command="cmd_items_renew2" />
92                                 <menuitem label="Check In" command="cmd_items_checkin2" />
93                                 <menuitem label="Add Billing" command="cmd_add_billing2" />
94                         </menupopup>
95                 </menu>
96         </menubar>
97 </hbox>
98
99
100 <hbox id="items_bottom_ui" flex="1">
101         <button id="noncat" label="Show Non-Cataloged Circulations in List Above" command="cmd_show_noncats" accesskey="N"/>
102         <spacer flex="1"/>
103         <button id="items_print" label="&staff.patron_display.items.print_receipt_label;" command="cmd_items_print" accesskey="&staff.patron_display.items.print_receipt_label.accesskey;" />
104 </hbox>
105
106 <hbox id="items_bottom_ui2" flex="1">
107         <spacer flex="1"/>
108         <button id="items_print2" label="&staff.patron_display.items.print_receipt_label;" command="cmd_items_print2" old_accesskey="&staff.patron_display.items.print_receipt_label.accesskey;" />
109 </hbox>
110
111 </overlay>