]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/place_hold.tt2
lp1422802: Improve visibility of parts on Place Holds screen
[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
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'>[% attrs.title_extended | html %]</div>
85                     [% IF hdata.parts AND !this_hold_disallowed %]
86                         [% IF hdata.parts.size > 0 %]
87                         <div style='padding-left: 10px; padding-bottom: 15px;'>
88                             [% IF enable.radio.parts == 'true' %]
89                                 <span style='font-weight: bold;'><label for='select_hold_part'>[%
90                                l('Select a Part:')
91                                %]</label></span>
92                              <div class='radio-parts-selection'>
93                              [% IF !hdata.part_required %]
94                                 <span class='parts-radio-option'>
95                                  <input type='radio' name='part' value='' required>[% l('All Parts') %]</span>
96                               [% END %]
97                                [% FOR part IN hdata.parts %]
98                                  <span class='parts-radio-option'><input type='radio' name='part' id=[% part.id %] value=[% part.id %] required>
99                                   <label for=[% part.id %]>[% part.label | html %]</label></span>
100                               [% END %]
101                               </div>
102                           [% ELSE %]
103                             <span style='font-weight: bold;'><label for='select_hold_part'>[%
104                                 hdata.part_required ? l('Select a Part:') : l('Select a Part (optional):')
105                             %]</label></span>
106                             <select id='select_hold_part' name='part'>
107                                 [% IF !hdata.part_required %]
108                                 <option selected='selected' value=''>[% l('- All Parts -') %]</option>
109                                 [% END %]
110                                 [% FOR part IN hdata.parts %]
111                                 <option value='[% part.id %]'>[% part.label | html %]</option>
112                                 [% END %]
113                             </select>
114                           [% END %]
115                         </div>
116                         [% ELSE %]
117                         <input type='hidden' name='part' value=''/>
118                         [% END %]
119                     [% END %]
120                     [% IF NOT metarecords.disabled %]
121                         [% IF CGI.param('hold_type') == 'T' AND hdata.record.metarecord %]
122                         <!-- Grab the bre_id so that we can restore it if user accidentally clicks advanced options -->
123                            [% bre_id = hdata.target.id %]
124                             <a  id='advanced_hold_link'
125                                 href="[% mkurl('', {hold_type => 'M', hold_target => hdata.record.metarecord.id, bre_id => bre_id}) %]">
126                                 [% l('Advanced Hold Options') %]</a>
127                         [% END %]
128                         [% IF CGI.param('hold_type') == 'M' AND CGI.param('bre_id') %]
129                             <input type="hidden" name="bre_id" value="[% CGI.param('bre_id') %]" />
130                             <a id='basic_hold_link'
131                                href="[% mkurl('', {hold_target => CGI.param('bre_id'), hold_type => 'T'}) %]">
132                                 [% l('Basic Hold Options') %]</a>
133                         [% END %]
134                         [% IF hdata.metarecord_filters.formats.size OR # should this be size > 1
135                             (hdata.metarecord_filters.langs.size && hdata.metarecord_filters.langs.size > 1);
136                             PROCESS metarecord_hold_filters_selector hold_data=hdata;
137                         END;
138                     END %]
139                 </td>
140             </tr>
141
142             [% IF this_hold_disallowed %]
143               <tr><td>
144                 <div class="mr_holds_no_formats">
145                 [% l('This item does not have any formats available for holds placement') %]
146                 </div>
147               </td></tr>
148             [% END %]
149
150             [%  IF !loop.last AND ctx.hold_data.size > 1 %]
151             <tr class="holds_item_row_separator"><td> </td></tr>
152             [% END %]
153
154         [% END %]
155         </table>
156
157         [% IF some_holds_allowed %]
158
159         <p>
160             [%- org_select_id = 'pickup_lib'; -%]
161             <label for="[% org_select_id %]">[%l('Pickup location:') %]</label>
162             [% PROCESS "opac/parts/org_selector.tt2";
163                 INCLUDE build_org_selector name='pickup_lib' 
164                     value=ctx.default_pickup_lib id=org_select_id 
165                     can_have_vols_only=1 hold_pickup_lib=1 %]
166         </p>
167         <p>
168             [% l('Notify when hold is ready for pickup?') %]
169             <blockquote>
170                 <input type="checkbox" id="email_notify" name="email_notify" value="t"
171                     [% IF !ctx.user.email %]disabled="true"[% ELSIF ctx.default_email_notify %]checked="checked"[% END %]/>
172                     <label for="email_notify">[% l('Yes, by Email') %]</label><br/>
173                 <blockquote>
174                     [% IF !ctx.user.email and !ctx.is_staff; l('No configured Email address. See "My Account" for setting your Email address.');
175                      ELSE; l('Email Address:') %] <span name="email_address">[% ctx.user.email %]</span>[% END %]
176                 </blockquote>
177                 [%- IF allow_phone_notifications == 'true' %]
178                 <input type="checkbox" id="phone_notify_checkbox" name="phone_notify_checkbox"
179                     [% IF ctx.default_phone_notify %]checked="checked"[% END %]/>
180                     <label for="phone_notify_checkbox">[% l('Yes, by Phone') %]</label><br/>
181                 <blockquote>
182                     <label>[% l('Phone Number:') %]<input type="text" name="phone_notify" [% setting = 'opac.default_phone';
183                     IF ctx.user_setting_map.$setting; %] value='[% ctx.user_setting_map.$setting | html %]'
184                     [%- ELSIF ctx.user.day_phone; %] value='[% ctx.user.day_phone | html %]' [% END %]/></label>
185                 </blockquote>
186                 [%- END -%]
187                 [% IF ctx.get_org_setting(ctx.search_ou, 'sms.enable') == 1 %]
188                 <input type="checkbox" id="sms_notify_checkbox" name="sms_notify_checkbox"
189                     [% IF ctx.default_sms_notify %]checked="checked"[% END %]/>
190                     <label for="sms_notify_checkbox">[% l('Yes, by Text Messaging') %]</label><br/>
191                 <blockquote>
192                     [% INCLUDE "opac/parts/sms_carrier_selector.tt2" %]<br/>
193                     [% INCLUDE "opac/parts/sms_number_textbox.tt2" %]<br/>
194                 </blockquote>
195                 [% END %]
196             </blockquote>
197         </p>
198         <input id="place_hold_submit" type="submit" name="submit" 
199             value="[% l('Submit') %]" title="[% l('Submit') %]"
200             alt="[% l('Submit') %]" class="opac-button" />
201         [% END # some_holds_allowed %]
202         <input type="reset" name="cancel" onclick="window.location='[% redirect | html %]'" value="[% l('Cancel') %]" id="holds_cancel" class="opac-button" />
203     </form>
204 </div>
205