]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/opac/skin/default/xml/common/holds.xml
added hold range selector and a button to allow staff to place holds for themselves...
[working/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                                         </tr>
15
16                                 </tbody>
17                         </table>
18                 </center>
19         </div>
20
21         <div id='check_holds_box' class='hide_me non_canvas' 
22                 style='margin-top: 6px; width: 100%; text-align: center'>
23                 <br/><br/><br/>
24                 <b>Checking for possibility of hold fulfillment...</b>
25         </div>
26
27         <div id='holds_box' class='hide_me non_canvas' style='margin-top: 6px;'>
28         
29                 <br/><br/>
30                 <table width='90%'>
31                         <tbody>
32                                 <tr>
33                                         <td class='holds_cell color_1' 
34                                                 align='center' colspan='2'>Place or Edit a Hold</td>
35                                 </tr>
36                                 <tr>
37                                         <td class='holds_cell'>&opac.holds.recipient;:</td>
38                                         <td class='holds_cell' id='holds_recipient'> </td>
39                                 </tr>
40                                 <tr>
41                                         <td class='holds_cell'>&common.title;:</td>
42                                         <td class='holds_cell' id='holds_title'> </td>
43                                 </tr>
44                                 <tr>
45                                         <td class='holds_cell'>&common.author;:</td>
46                                         <td class='holds_cell' id='holds_author'> </td>
47                                 </tr>
48                                 <tr>
49                                         <td class='holds_cell'>&common.format;:</td>
50                                         <td class='holds_cell' id='holds_format'> </td>
51                                 </tr>
52                                 <tr id='hold_physical_desc_row'>
53                                         <td class='holds_cell'>Physical Description:</td>
54                                         <td class='holds_cell' id='holds_physical_desc'> </td>
55                                 </tr>
56                                 <tr>
57                                         <td class='holds_cell'>&opac.holds.contactPhone;:</td>
58                                         <!--
59                                         <td class='holds_cell' id='holds_phone'> </td>
60                                         -->
61                                         <td class='holds_cell'>
62                                                 <input id='holds_phone' size='13' maxlength='12'/>
63                                                 <span style='margin-left: 4px; font-size: 7pt;'>(XXX-YYY-ZZZZ)</span>
64                                         </td>
65                                 </tr>
66                                 <tr>
67                                         <td class='holds_cell'>Enable phone notifications for this hold?</td>
68                                         <td class='holds_cell'>
69                                                 <input type='checkbox' id='holds_enable_phone'  checked='checked'
70                                                         onchange='
71                                                                 if (this.checked) $("holds_phone").disabled=false; 
72                                                                 else $("holds_phone").disabled = true;'/>
73                                         </td>
74                                 </tr>
75
76                                 <tr>
77                                         <td class='holds_cell'>&opac.holds.concactEmail;:</td>
78                                         <td class='holds_cell' id='holds_email'> </td>
79                                 </tr>
80                                 <tr>
81                                         <td class='holds_cell'>Enable email notifications for this hold?</td>
82                                         <td class='holds_cell'>
83                                                 <input type='checkbox' id='holds_enable_email' checked='checked'/>
84                                         </td>
85                                 </tr>
86                                 <tr id='holds_depth_selector_row' class='hide_me'>
87                                         <td class='holds_cell'>Hold Range</td>
88                                         <td class='holds_cell'>
89                                                 <select id='holds_depth_selector'></select>
90                                         </td>
91                                 </tr>
92                                 <tr>
93                                         <td class='holds_cell'>&opac.holds.pickupLocation;</td>
94                                         <td class='holds_cell'>
95                                                 <select id='holds_org_selector'> </select>
96                                         </td>
97                                 </tr>
98                                 <tr>
99                                         <td class='holds_cell' align='center' colspan='2'>
100                                                 <button id='holds_submit'>&opac.holds.placeHold;</button>
101                                                 <button class='hide_me' id='holds_update'>Update Hold</button>
102                                                 <span style='padding: 20px;'> </span>
103                                                 <button id='holds_cancel'>&common.cancel;</button>
104                                         </td>
105                                 </tr>
106                         </tbody>
107                 </table>
108         
109                 <div class='hide_me' id='holds_success'>&opac.holds.success;</div>
110                 <div class='hide_me' id='holds_failure'>&opac.holds.failure;</div>
111                 <span class='hide_me' id='holds_bad_phone'>
112                         The phone number does not have the correct format.
113                         The expected format is XXX-YYY-ZZZZ
114                 </span>
115         
116         </div>
117 </div>