]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/place_hold.tt2
LP#1701001: add "patron search" button to OPAC place hold form
[working/Evergreen.git] / Open-ILS / src / templates / opac / parts / place_hold.tt2
1 [%  PROCESS "opac/parts/misc_util.tt2";
2     PROCESS "opac/parts/hold_error_messages.tt2";
3     PROCESS "opac/parts/metarecord_hold_filters.tt2";
4 %]
5 <script>
6 // Toggle the activation date input and check the suspend checkbox.
7 // If JavaScript is disabled, the CSS will handle the former, but
8 // the latter will not happen.
9 function toggleActivationDate() {
10     var cb = document.getElementById("hold_suspend");
11     var block = document.getElementById("toggled-block-suspend");
12     var anchor = document.getElementById("actDateToggle");
13     var actText = "[%- l('Hide activation date') -%]";
14     var inActText = "[%- l('Set activation date') -%]";
15     // Check for not equal to block so it works on first click.
16     if (block.style.display != "block") {
17         block.style.display = "block";
18         anchor.innerHTML = actText;
19         if (cb.checked != true) cb.checked = true;
20     } else {
21         block.style.display = "none";
22         anchor.innerHTML = inActText;
23     }
24     // Prevent the href from being followed, thus overriding the CSS.
25     return false;
26 }
27 </script>
28 <div id='holds_box' class='canvas' style='margin-top: 6px;'>
29     <h1>[% l('Place Hold') %]</h1>
30
31     [% some_holds_allowed = -1 %]
32
33     <!-- loop through the holds and display status of request where appropriate -->
34         [% FOR hdata IN ctx.hold_data;
35             attrs = {marc_xml => hdata.marc_xml};
36             PROCESS get_marc_attrs args=attrs;
37             this_hold_disallowed = 0;
38
39             IF CGI.param('hold_type') == 'M';
40               IF hdata.metarecord_filters.formats.size == 0;
41                 this_hold_disallowed = 1;
42                 # if this is the first hold and it's disallowed,
43                 # assume all holds are, until we proven otherwise
44                 SET some_holds_allowed = 0 IF some_holds_allowed == -1;
45               ELSE; some_holds_allowed = 1; END;
46             END %]
47       
48     <form method="post" name="PlaceHold" onsubmit="return validateHoldForm()" >
49         <input type="hidden" name="hold_type" value="[% CGI.param('hold_type') | html %]" />
50         [%  
51             redirect = CGI.param('hold_source_page') || CGI.param('redirect_to') || CGI.referer;
52             # since we have to be logged in to get this far, return to a secure page
53             redirect = redirect.replace('^http:', 'https:') 
54         %]
55         <input type="hidden" name="redirect_to" value="[% redirect | html %]" />
56         <input type="hidden" name="hold_source_page" value="[% CGI.param('hold_source_page') | html %]" />
57         [%
58             usr_barcode = CGI.param('usr_barcode') | html;
59             is_requestor = CGI.param('is_requestor');
60
61            IF is_requestor == '';
62                is_requestor = '0';
63            END;
64
65            IF is_requestor == '0' && usr_barcode == ctx.staff_recipient.card.barcode;
66                usr_barcode = '';
67            END;
68         %]
69
70         [% IF ctx.is_staff %]
71         <p class="staff-hold">
72             <input type="radio" id="hold_usr_is_requestor_not"
73                 onchange="staff_hold_usr_input_disabler(this);"
74                 name="hold_usr_is_requestor" value="0"
75                 />
76             <label for="hold_usr_is_requestor_not">
77                 [% l("Place hold for patron by barcode:") %]
78             </label>
79             <input type="text" name="hold_usr" id="hold_usr_input" 
80               value="[% usr_barcode | html %]" 
81               onchange="staff_hold_usr_barcode_changed();" 
82               onpaste="setTimeout(staff_hold_usr_barcode_changed,1);" 
83               onkeypress="return no_hold_submit(event)" autofocus /> 
84             <span id="patron_name"></span>
85             <span id="patron_usr_barcode_not_found" style="display: none">
86               [% l('Patron barcode was not found') %]
87             </span>
88             [% IF ctx.is_browser_staff %]
89             <button id="hold_usr_search" type="button" class="opac-button" style="display: none;">[% l('Patron Search') %]</button>
90             [% END %]
91             <br />
92             <input type="hidden" id="staff_barcode" 
93               value="[% ctx.staff_recipient.card.barcode | html %]"/>
94             <span>
95                 <input type="radio" id="hold_usr_is_requestor"
96                     onchange="staff_hold_usr_input_disabler(this);"
97                     name="hold_usr_is_requestor" value="1" />
98                 <label for="hold_usr_is_requestor">
99                     [% l("Place this hold for me ([_1] [_2])", ctx.user.first_given_name, ctx.user.family_name) | html %]
100                 </label>
101             </span>
102         </p>
103         [% END %]
104
105         <table id='hold-items-list'>
106             <tr>
107                 <td>
108                     [% IF !this_hold_disallowed %]
109                     <input type="hidden" name="hold_target" value="[% hdata.target.id | html %]" />
110                     [% END %]
111                     <div class='hold-items-list-title'>
112                                             <!-- If hold is for grouped formats/editions (metarecord), show short title - else, show complete title --> 
113                                             [% IF CGI.param('hold_type') == 'M' %]
114                                                     [% attrs.title | html %]
115                                                 [% ELSE %]
116                                                     [% attrs.title_extended | html %]
117                                                 [% END %]
118                     </div>
119                     [% IF hdata.parts AND !this_hold_disallowed %]
120                         [% IF hdata.parts.size > 0 %]
121                         <div class='hold-div'>
122                             [% IF enable.radio.parts == 'true' %]
123                                 <span class='hold-span'><label for='select_hold_part'>[%
124                                l('Select a Part:')
125                                %]</label></span>
126                              <div class='radio-parts-selection'>
127                              [% IF !hdata.part_required %]
128                                 <span class='parts-radio-option'>
129                                  <input type='radio' name='part' value='' required>[% l('All Parts') %]</span>
130                               [% END %]
131                                [% FOR part IN hdata.parts %]
132                                  <span class='parts-radio-option'><input type='radio' name='part' id=[% part.id %] value=[% part.id %] required>
133                                   <label for=[% part.id %]>[% part.label | html %]</label></span>
134                               [% END %]
135                               </div>
136                           [% ELSE %]
137                             <span style='font-weight: bold;'><label for='select_hold_part'>[%
138                                 hdata.part_required ? l('Select a Part:') : l('Select a Part (optional):')
139                             %]</label></span>
140                             <select id='select_hold_part' name='part'>
141                                 [% IF !hdata.part_required %]
142                                 <option selected='selected' value=''>[% l('- All Parts -') %]</option>
143                                 [% END %]
144                                 [% FOR part IN hdata.parts %]
145                                 <option value='[% part.id %]'>[% part.label | html %]</option>
146                                 [% END %]
147                             </select>
148                           [% END %]
149                         </div>
150                         [% ELSE %]
151                         <input type='hidden' name='part' value=''/>
152                         [% END %]
153                     [% END %]
154                     [% IF NOT metarecords.disabled %]
155                         [% IF CGI.param('hold_type') == 'T' AND hdata.record.metarecord AND !hdata.part_required %]
156                         <!-- Grab the bre_id so that we can restore it if user accidentally clicks advanced options -->
157                            [% bre_id = hdata.target.id %]
158                             <a  id='advanced_hold_link'
159                                 href="[% mkurl('', {hold_type => 'M', hold_target => hdata.record.metarecord.id, bre_id => bre_id}) %]">
160                                 [% l('Advanced Hold Options') %]</a>
161                         [% END %]
162                         [% IF CGI.param('hold_type') == 'M' AND CGI.param('bre_id') %]
163                             <input type="hidden" name="bre_id" value="[% CGI.param('bre_id') %]" />
164                             <a id='basic_hold_link'
165                                href="[% mkurl('', {hold_target => CGI.param('bre_id'), hold_type => 'T'}) %]">
166                                 [% l('Basic Hold Options') %]</a>
167                         [% END %]
168                         [% IF hdata.metarecord_filters.formats.size OR # should this be size > 1
169                             (hdata.metarecord_filters.langs.size && hdata.metarecord_filters.langs.size > 1);
170                             PROCESS metarecord_hold_filters_selector hold_data=hdata;
171                         END;
172                     END %]
173                 </td>
174             </tr>
175
176             [% IF this_hold_disallowed %]
177               <tr><td>
178                 <div class="mr_holds_no_formats">
179                 [% l('This item does not have any formats available for holds placement') %]
180                 </div>
181               </td></tr>
182             [% END %]
183
184             [%  IF !loop.last AND ctx.hold_data.size > 1 %]
185             <tr class="holds_item_row_separator"><td> </td></tr>
186             [% END %]
187
188         [% END %]
189         </table>
190
191         [% IF some_holds_allowed %]
192
193         <p>
194             [%- org_select_id = 'pickup_lib'; -%]
195             <label for="[% org_select_id %]">[%l('Pickup location:') %]</label>
196             [% PROCESS "opac/parts/org_selector.tt2";
197                 INCLUDE build_org_selector name='pickup_lib' 
198                     value=ctx.default_pickup_lib id=org_select_id 
199                     can_have_vols_only=1 hold_pickup_lib=1 %]
200         </p>
201         <p>
202             [% l('Notify when hold is ready for pickup?') %]
203             <blockquote>
204                 <input class="hold-alert-method" type="checkbox" id="email_notify" name="email_notify" value="t"
205                     [% IF !ctx.user.email %]disabled="true"[% ELSIF ctx.default_email_notify %]checked="checked"[% END %]/>
206                     <label for="email_notify">[% l('Yes, by Email') %]</label><br/>
207                 <blockquote>
208                     [% IF !ctx.user.email and !ctx.is_staff; l('No configured Email address. See "My Account" for setting your Email address.');
209                      ELSE; l('Email Address:') %] <span name="email_address">[% ctx.user.email %]</span>[% END %]
210                 </blockquote>
211                 [%- IF allow_phone_notifications == 'true' %]
212                 <input class="hold-alert-method" type="checkbox" id="phone_notify_checkbox" name="phone_notify_checkbox"
213                     [% IF ctx.default_phone_notify %]checked="checked"[% END %]/>
214                     <label for="phone_notify_checkbox">[% l('Yes, by Phone') %]</label><br/>
215                 <blockquote>
216                     <label>[% l('Phone Number:') %]<input type="text" name="phone_notify" [% setting = 'opac.default_phone';
217                     IF ctx.user_setting_map.$setting; %] value='[% ctx.user_setting_map.$setting | html %]'
218                     [%- ELSIF ctx.user.day_phone; %] value='[% ctx.user.day_phone | html %]' [% END %]/></label>
219                 </blockquote>
220                 [%- END -%]
221                 [% IF ctx.get_org_setting(ctx.search_ou, 'sms.enable') == 1 %]
222                 <input class="hold-alert-method" type="checkbox" id="sms_notify_checkbox" name="sms_notify_checkbox"
223                     [% IF ctx.default_sms_notify %]checked="checked"[% END %]/>
224                     <label for="sms_notify_checkbox">[% l('Yes, by Text Messaging') %]</label><br/>
225                 <blockquote>
226                     [% INCLUDE "opac/parts/sms_carrier_selector.tt2" %]<br/>
227                     [% INCLUDE "opac/parts/sms_number_textbox.tt2" %]<br/>
228                 </blockquote>
229                 [% END %]
230             </blockquote>
231             <blockquote>
232                 [% IF ctx.hold_data.size == 1;
233                        l('Suspend this hold?');
234                    ELSE;
235                        l('Suspend these holds?');
236                    END %]
237                 <img src="[% ctx.media_prefix %]/images/question-mark.png[% ctx.cache_key %]"
238                      alt="[% l('Suspend Hold Help') %]"
239                      title="[% l('A suspended hold will retain its place in the queue, but will not be fulfilled until it has been activated.') %]" />
240                 <br/>
241                 <input type="checkbox" name="hold_suspend" id="hold_suspend" value="t"/> [% l('Yes') %]
242                 <a id="actDateToggle" href="#toggled-block-suspend" onclick="return toggleActivationDate();">[% l('Set activation date') %]</a>
243             </blockquote>
244             <blockquote id="toggled-block-suspend">
245                 <label for="thaw_date">[% l('Activate on') %]</label>
246                 <input type="text" id="thaw_date" name="thaw_date" />
247                 <em>[% l('Enter date in MM/DD/YYYY format') %]</em>
248             </blockquote>
249         </p>
250         <input id="place_hold_submit" type="submit" name="submit" 
251             value="[% l('Submit') %]" title="[% l('Submit') %]"
252             alt="[% l('Submit') %]" class="opac-button" />
253         [% END # some_holds_allowed %]
254         <input type="reset" name="cancel" onclick="window.location='[% redirect | html %]'" value="[% l('Cancel') %]" id="holds_cancel" class="opac-button" />
255     </form>
256 </div>
257