]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/place_hold.xul
Merge remote branch 'working/user/shadowspar/ttopac-altcleanup' into template-toolkit...
[Evergreen.git] / Open-ILS / xul / staff_client / server / patron / place_hold.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Item Hold/Recall Placement -->
4
5 <!-- /////////////////////////////////////////////////////////////////////// -->
6 <!-- STYLESHEETS -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
9
10 <!-- /////////////////////////////////////////////////////////////////////// -->
11 <!-- LOCALIZATION -->
12 <!DOCTYPE window PUBLIC "" ""[
13     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
14 ]>
15
16 <!-- /////////////////////////////////////////////////////////////////////// -->
17 <!-- OVERLAYS -->
18 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
19
20 <window id="place_hold_win" 
21     onload="try{my_init();font_helper();persist_helper();}catch(E){alert(E);}"
22     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
23
24     <!-- /////////////////////////////////////////////////////////////////// -->
25     <!-- BEHAVIOR -->
26     <script type="text/javascript">
27         var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true;
28     </script>
29     <scripts id="openils_util_scripts"/>
30
31     <messagecatalog id="patronStrings"
32         src='/xul/server/locale/<!--#echo var="locale"-->/patron.properties'/>
33
34     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
35     <script type="text/javascript" src="place_hold.js"/>
36
37     <vbox flex="1">
38     <groupbox>
39         <caption label="&staff.item.batch.hold.groupbox_caption;"/>
40
41         <grid>
42             <columns>
43                 <column/>
44                 <column/>
45             </columns>
46             <rows>
47                 <row>
48                     <label control="hold_usr_textbox"
49                         value="&staff.item.batch.hold.hold_usr.label;"
50                         accesskey="&staff.item.batch.hold.hold_usr.accesskey;"/>
51                     <textbox id="hold_usr_textbox"/>
52                 </row>
53                 <row>
54                     <spacer/>
55                     <label id="hold_usr_name"/>
56                 </row>
57                 <row>
58                     <label control="hold_type_menu"
59                         value="&staff.item.batch.hold.hold_type_menu.label;"
60                         accesskey="&staff.item.batch.hold.hold_type_menu.accesskey;"/>
61                     <hbox>
62                         <menulist id="hold_type_menu" oils_persist="value">
63                             <menupopup>
64                                 <menuitem value="C"
65                                     label="&staff.item.batch.hold.hold_type_menuentry.copy_hold;"/>
66                                 <menuitem value="R"
67                                     label="&staff.item.batch.hold.hold_type_menuentry.recall_hold;"/>
68                                 <menuitem value="F"
69                                     label="&staff.item.batch.hold.hold_type_menuentry.force_hold;"/>
70                             </menupopup>
71                         </menulist>
72                     </hbox>
73                 </row>
74                 <row>
75                     <label
76                         value="&staff.item.batch.hold.pick_up_lib_menu.label;"
77                         accesskey="&staff.item.batch.hold.pick_up_lib_menu.accesskey;"/>
78                     <hbox id="pickup_lib_menu_placeholder"/>
79                 </row>
80                 <row>
81                     <spacer/>
82                     <hbox>
83                         <button id="cancel_btn"
84                             label="&staff.item.batch.hold.cancel_btn.label;"
85                             accesskey="&staff.item.batch.hold.cancel_btn.accesskey;"/>
86                         <button id="request_btn"
87                             label="&staff.item.batch.hold.request_btn.label;"
88                             accesskey="&staff.item.batch.hold.request_btn.accesskey;"/>
89                         <progressmeter id="progress_meter"
90                             mode="undetermined"
91                             hidden="true" />
92                     </hbox>
93                 </row>
94             </rows>
95         </grid>
96
97     </groupbox>
98     <description id="desc" hidden="true">
99         &staff.item.batch.hold.failures_and_settings;
100     </description>
101     <vbox id="msgs" flex="1" class="my_overflow"/>
102     </vbox>
103
104 </window>
105