]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/opac/parts/place_hold.tt2
LP#1454884 Hold placed on grouped metabib result displays wrong title
[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
6 <div id='holds_box' class='canvas' style='margin-top: 6px;'>
7     <h1>[% l('Place Hold') %]</h1>
8
9     [% some_holds_allowed = -1 %]
10
11     <!-- loop through the holds and display status of request where appropriate -->
12         [% FOR hdata IN ctx.hold_data;
13             attrs = {marc_xml => hdata.marc_xml};
14             PROCESS get_marc_attrs args=attrs;
15             this_hold_disallowed = 0;
16
17             IF CGI.param('hold_type') == 'M';
18               IF hdata.metarecord_filters.formats.size == 0;
19                 this_hold_disallowed = 1;
20                 # if this is the first hold and it's disallowed,
21                 # assume all holds are, until we proven otherwise
22                 SET some_holds_allowed = 0 IF some_holds_allowed == -1;
23               ELSE; some_holds_allowed = 1; END;
24             END %]
25       
26     <form method="post" name="PlaceHold" [% IF hdata.parts.size > 0 AND enable.radio.parts == 'true' %] onsubmit="return validateHoldForm()" [% END %] >
27         <input type="hidden" name="hold_type" value="[% CGI.param('hold_type') | html %]" />
28         [%  
29             redirect = CGI.param('hold_source_page') || CGI.param('redirect_to') || CGI.referer;
30             # since we have to be logged in to get this far, return to a secure page
31             redirect = redirect.replace('^http:', 'https:') 
32         %]
33         <input type="hidden" name="redirect_to" value="[% redirect | html %]" />
34         [%
35             usr_barcode = CGI.param('usr_barcode') | html;
36             is_requestor = CGI.param('is_requestor');
37
38            IF is_requestor == '';
39                is_requestor = '0';
40            END;
41
42            IF is_requestor == '0' && usr_barcode == ctx.staff_recipient.card.barcode;
43                usr_barcode = '';
44            END;
45         %]
46
47         [% IF ctx.is_staff %]
48         <p class="staff-hold">
49             <input type="radio" id="hold_usr_is_requestor_not"
50                 onchange="staff_hold_usr_input_disabler(this);"
51                 name="hold_usr_is_requestor" value="0"
52                 />
53             <label for="hold_usr_is_requestor_not">
54                 [% l("Place hold for patron by barcode:") %]
55             </label>
56             <input type="text" name="hold_usr" id="hold_usr_input" 
57               value="[% usr_barcode | html %]" 
58               onchange="staff_hold_usr_barcode_changed();" 
59               onpaste="setTimeout(staff_hold_usr_barcode_changed,1);" 
60               onkeypress="return no_hold_submit(event)" autofocus /> 
61             <span id="patron_name"></span>
62             <span id="patron_usr_barcode_not_found" style="display: none">
63               [% l('Patron barcode was not found') %]
64             </span><br />
65             <input type="hidden" id="staff_barcode" 
66               value="[% ctx.staff_recipient.card.barcode | html %]"/>
67             <span>
68                 <input type="radio" id="hold_usr_is_requestor"
69                     onchange="staff_hold_usr_input_disabler(this);"
70                     name="hold_usr_is_requestor" value="1" />
71                 <label for="hold_usr_is_requestor">
72                     [% l("Place this hold for me ([_1] [_2])", ctx.user.first_given_name, ctx.user.family_name) | html %]
73                 </label>
74             </span>
75         </p>
76         [% END %]
77
78         <table id='hold-items-list'>
79             <tr>
80                 <td>
81                     [% IF !this_hold_disallowed %]
82                     <input type="hidden" name="hold_target" value="[% hdata.target.id | html %]" />
83                     [% END %]
84                     <div class='hold-items-list-title'>
85                                             <!-- If hold is for grouped formats/editions (metarecord), show short title - else, show complete title --> 
86                                             [% IF CGI.param('hold_type') == 'M' %]
87                                                     [% attrs.title | html %]
88                                                 [% ELSE %]
89                                                     [% attrs.title_extended | html %]
90                                                 [% END %]
91                     </div>
92                     [% IF hdata.parts AND !this_hold_disallowed %]
93                         [% IF hdata.parts.size > 0 %]
94                         <div style='padding-left: 10px; padding-bottom: 15px;'>
95                             [% IF enable.radio.parts == 'true' %]
96                                 <span style='font-weight: bold;'><label for='select_hold_part'>[%
97                                l('Select a Part:')
98                                %]</label></span>
99                              <div class='radio-parts-selection'>
100                              [% IF !hdata.part_required %]
101                                 <span class='parts-radio-option'>
102                                  <input type='radio' name='part' value='' required>[% l('All Parts') %]</span>
103                               [% END %]
104                                [% FOR part IN hdata.parts %]
105                                  <span class='parts-radio-option'><input type='radio' name='part' id=[% part.id %] value=[% part.id %] required>
106                                   <label for=[% part.id %]>[% part.label | html %]</label></span>
107                               [% END %]
108                               </div>
109                           [% ELSE %]
110                             <span style='font-weight: bold;'><label for='select_hold_part'>[%
111                                 hdata.part_required ? l('Select a Part:') : l('Select a Part (optional):')
112                             %]</label></span>
113                             <select id='select_hold_part' name='part'>
114                                 [% IF !hdata.part_required %]
115                                 <option selected='selected' value=''>[% l('- All Parts -') %]</option>
116                                 [% END %]
117                                 [% FOR part IN hdata.parts %]
118                                 <option value='[% part.id %]'>[% part.label | html %]</option>
119                                 [% END %]
120                             </select>
121                           [% END %]
122                         </div>
123                         [% ELSE %]
124                         <input type='hidden' name='part' value=''/>
125                         [% END %]
126                     [% END %]
127                     [% IF NOT metarecords.disabled %]
128                         [% IF CGI.param('hold_type') == 'T' AND hdata.record.metarecord %]
129                         <!-- Grab the bre_id so that we can restore it if user accidentally clicks advanced options -->
130                            [% bre_id = hdata.target.id %]
131                             <a  id='advanced_hold_link'
132                                 href="[% mkurl('', {hold_type => 'M', hold_target => hdata.record.metarecord.id, bre_id => bre_id}) %]">
133                                 [% l('Advanced Hold Options') %]</a>
134                         [% END %]
135                         [% IF CGI.param('hold_type') == 'M' AND CGI.param('bre_id') %]
136                             <input type="hidden" name="bre_id" value="[% CGI.param('bre_id') %]" />
137                             <a id='basic_hold_link'
138                                href="[% mkurl('', {hold_target => CGI.param('bre_id'), hold_type => 'T'}) %]">
139                                 [% l('Basic Hold Options') %]</a>
140                         [% END %]
141                         [% IF hdata.metarecord_filters.formats.size OR # should this be size > 1
142                             (hdata.metarecord_filters.langs.size && hdata.metarecord_filters.langs.size > 1);
143                             PROCESS metarecord_hold_filters_selector hold_data=hdata;
144                         END;
145                     END %]
146                 </td>
147             </tr>
148
149             [% IF this_hold_disallowed %]
150               <tr><td>
151                 <div class="mr_holds_no_formats">
152                 [% l('This item does not have any formats available for holds placement') %]
153                 </div>
154               </td></tr>
155             [% END %]
156
157             [%  IF !loop.last AND ctx.hold_data.size > 1 %]
158             <tr class="holds_item_row_separator"><td> </td></tr>
159             [% END %]
160
161         [% END %]
162         </table>
163
164         [% IF some_holds_allowed %]
165
166         <p>
167             [%- org_select_id = 'pickup_lib'; -%]
168             <label for="[% org_select_id %]">[%l('Pickup location:') %]</label>
169             [% PROCESS "opac/parts/org_selector.tt2";
170                 INCLUDE build_org_selector name='pickup_lib' 
171                     value=ctx.default_pickup_lib id=org_select_id 
172                     can_have_vols_only=1 hold_pickup_lib=1 %]
173         </p>
174         <p>
175             [% l('Notify when hold is ready for pickup?') %]
176             <blockquote>
177                 <input type="checkbox" id="email_notify" name="email_notify" value="t"
178                     [% IF !ctx.user.email %]disabled="true"[% ELSIF ctx.default_email_notify %]checked="checked"[% END %]/>
179                     <label for="email_notify">[% l('Yes, by Email') %]</label><br/>
180                 <blockquote>
181                     [% IF !ctx.user.email and !ctx.is_staff; l('No configured Email address. See "My Account" for setting your Email address.');
182                      ELSE; l('Email Address:') %] <span name="email_address">[% ctx.user.email %]</span>[% END %]
183                 </blockquote>
184                 [%- IF allow_phone_notifications == 'true' %]
185                 <input type="checkbox" id="phone_notify_checkbox" name="phone_notify_checkbox"
186                     [% IF ctx.default_phone_notify %]checked="checked"[% END %]/>
187                     <label for="phone_notify_checkbox">[% l('Yes, by Phone') %]</label><br/>
188                 <blockquote>
189                     <label>[% l('Phone Number:') %]<input type="text" name="phone_notify" [% setting = 'opac.default_phone';
190                     IF ctx.user_setting_map.$setting; %] value='[% ctx.user_setting_map.$setting | html %]'
191                     [%- ELSIF ctx.user.day_phone; %] value='[% ctx.user.day_phone | html %]' [% END %]/></label>
192                 </blockquote>
193                 [%- END -%]
194                 [% IF ctx.get_org_setting(ctx.search_ou, 'sms.enable') == 1 %]
195                 <input type="checkbox" id="sms_notify_checkbox" name="sms_notify_checkbox"
196                     [% IF ctx.default_sms_notify %]checked="checked"[% END %]/>
197                     <label for="sms_notify_checkbox">[% l('Yes, by Text Messaging') %]</label><br/>
198                 <blockquote>
199                     [% INCLUDE "opac/parts/sms_carrier_selector.tt2" %]<br/>
200                     [% INCLUDE "opac/parts/sms_number_textbox.tt2" %]<br/>
201                 </blockquote>
202                 [% END %]
203             </blockquote>
204         </p>
205         <input id="place_hold_submit" type="submit" name="submit" 
206             value="[% l('Submit') %]" title="[% l('Submit') %]"
207             alt="[% l('Submit') %]" class="opac-button" />
208         [% END # some_holds_allowed %]
209         <input type="reset" name="cancel" onclick="window.location='[% redirect | html %]'" value="[% l('Cancel') %]" id="holds_cancel" class="opac-button" />
210     </form>
211 </div>
212