]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/opac/skin/default/xml/common/holds.xml
start adding metarecord hold support
[Evergreen.git] / Open-ILS / web / opac / skin / default / xml / common / holds.xml
1
2 <div>
3         <div id='xulholds_box' class='hide_me non_canvas' style='margin-top: 6px;'>
4                 <center>
5                         <table class='data_grid' style='margin-top: 20px;'>
6                                 <tbody>
7                                         <tr>
8                                                 <td>&opac.holds.xulRecipient;:</td>
9                                                 <td><input type='text' id='xul_recipient_barcode'> </input></td>
10                                                 <td><input type='submit' value='&common.submit;' 
11                                                         id='xul_recipient_barcode_submit'> </input></td>
12                                                 <td><input type='submit' value='Place hold for me' 
13                                                         id='xul_recipient_me'> </input></td>
14                                                 <td><input type='submit' value='Cancel' onclick='showCanvas();'></input></td>
15                                         </tr>
16
17                                 </tbody>
18                         </table>
19                 </center>
20         </div>
21
22         <div id='check_holds_box' class='hide_me non_canvas' 
23                 style='margin-top: 6px; width: 100%; text-align: center'>
24                 <br/><br/><br/>
25                 <b>Checking for possibility of hold fulfillment...</b>
26         </div>
27
28         <div id='holds_box' class='hide_me non_canvas' style='margin-top: 6px;'>
29         
30                 <br/>
31                 <table width='90%'>
32                         <tbody>
33                                 <tr>
34                                         <td class='holds_cell color_1' 
35                                                 align='center' colspan='2'>Create / Edit a Hold</td>
36                                 </tr>
37                                 <tr>
38                                         <td class='holds_cell'>&opac.holds.recipient;:</td>
39                                         <td class='holds_cell' id='holds_recipient'> </td>
40                                 </tr>
41                                 <tr>
42                                         <td class='holds_cell'>&common.title;:</td>
43                                         <td class='holds_cell' id='holds_title'> </td>
44                                 </tr>
45                                 <tr>
46                                         <td class='holds_cell'>&common.author;:</td>
47                                         <td class='holds_cell' id='holds_author'> </td>
48                                 </tr>
49                                 <tr>
50                                         <td class='holds_cell'>&common.format;:</td>
51                                         <td class='holds_cell' id='holds_format'> </td>
52                                 </tr>
53                                 <tr id='hold_physical_desc_row'>
54                                         <td class='holds_cell'>Physical Description:</td>
55                                         <td class='holds_cell' id='holds_physical_desc'> </td>
56                                 </tr>
57
58                                 <tr class='hide_me' id='holds_cn_row'>
59                                         <td class='holds_cell'>Call Number:</td>
60                                         <td class='holds_cell'><b id='holds_cn'/> </td>
61                                 </tr>
62
63                                 <tr class='hide_me' id='holds_copy_row'>
64                                         <td class='holds_cell'>Copy Barcode:</td>
65                                         <td class='holds_cell'><b id='holds_copy'/> </td>
66                                 </tr>
67
68                                 <tr class='hide_me' id='holds_type_row'>
69                                         <td class='holds_cell'>Hold Type:</td>
70                                         <td class='holds_cell hide_me' id='holds_is_cn'><b>Volume Hold</b></td>
71                                         <td class='holds_cell hide_me' id='holds_is_copy'><b>Copy Hold</b></td>
72                                 </tr>
73
74                                 <tr>
75                                         <td class='holds_cell'>&opac.holds.contactPhone;:</td>
76                                         <td class='holds_cell'>
77                                                 <input id='holds_phone' size='13' maxlength='12'/>
78                                                 <span style='margin-left: 4px; font-size: 7pt;'>(XXX-YYY-ZZZZ)</span>
79                                         </td>
80                                 </tr>
81                                 <tr>
82                                         <td class='holds_cell'>Enable phone notifications for this hold?</td>
83                                         <td class='holds_cell'>
84                                                 <input type='checkbox' id='holds_enable_phone'  checked='checked'
85                                                         onchange='
86                                                                 if (this.checked) $("holds_phone").disabled=false; 
87                                                                 else $("holds_phone").disabled = true;'/>
88                                         </td>
89                                 </tr>
90
91                                 <tr>
92                                         <td class='holds_cell'>&opac.holds.concactEmail;:</td>
93                                         <td class='holds_cell' id='holds_email'> </td>
94                                 </tr>
95                                 <tr>
96                                         <td class='holds_cell'>Enable email notifications for this hold?</td>
97                                         <td class='holds_cell'>
98                                                 <input type='checkbox' id='holds_enable_email' checked='checked'/>
99                                         </td>
100                                 </tr>
101                                 <tr id='holds_depth_selector_row' class='hide_me'>
102                                         <td class='holds_cell'>Hold Range</td>
103                                         <td class='holds_cell'>
104                                                 <select id='holds_depth_selector'></select>
105                                         </td>
106                                 </tr>
107                                 <tr>
108                                         <td class='holds_cell'>&opac.holds.pickupLocation;</td>
109                                         <td class='holds_cell'>
110                                                 <select id='holds_org_selector'> </select>
111                                         </td>
112                                 </tr>
113                                 <tr id='holds_alt_formats_row' class='hide_me'>
114                                         <td class='holds_cell'>
115                                                 I would also be interested in receiving my hold in the following alternate formats:
116                                         </td>
117                                         <td class='holds_cell'>
118                                         </td>
119                                 </tr>
120
121                                 <tr>
122                                         <td class='holds_cell' align='center' colspan='2'>
123                                                 <button id='holds_submit'>&opac.holds.placeHold;</button>
124                                                 <button class='hide_me' id='holds_update'>Update Hold</button>
125                                                 <span style='padding: 20px;'> </span>
126                                                 <button id='holds_cancel'>&common.cancel;</button>
127                                         </td>
128                                 </tr>
129                         </tbody>
130                 </table>
131         
132                 <div class='hide_me' id='holds_success'>&opac.holds.success;</div>
133                 <div class='hide_me' id='holds_failure'>&opac.holds.failure;</div>
134                 <span class='hide_me' id='holds_bad_phone'>
135                         The phone number does not have the correct format.
136                         The expected format is XXX-YYY-ZZZZ
137                 </span>
138
139                 <span class='hide_me' id='hold_not_allowed'>
140                         No items were found that could fulfill the requested holds.  
141                         It's possible that changing the pickup library or choosing a 
142                         different format will result in a successful hold.
143                 </span>
144
145         </div>
146 </div>