]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates-bootstrap/opac/parts/record/copy_table.tt2
LP#1983729: Bootstrap Opac: fix copy navigation links in small screens
[working/Evergreen.git] / Open-ILS / src / templates-bootstrap / opac / parts / record / copy_table.tt2
1 [%-
2
3 # If being used in serial mode, flatten list of units so that they can be
4 # used like one long list of copies without changing so much code below.
5 IF serial_holdings;
6     copies = [];
7     FOREACH h IN serial_holdings;
8         units = h.units.slice(0); # copy
9         FOREACH unit IN units;
10             unit.holding_label = h.label;
11         END;
12         copies = copies.merge(units);
13     END;
14 END;
15 available=ctx.available;
16
17 FOREACH copy_info IN copies;
18     IF copy_info.call_number_label != '##URI##';
19         has_copies = 'true';
20     END;
21     IF copy_info.part_label != '';
22         has_parts = 'true';
23     END;
24     IF has_parts && has_copies;
25         LAST;
26     END;
27 END;
28 -%]
29 [%- MACRO display_ou_distance(ou) BLOCK;
30     km = ctx.ou_distances.$ou;
31     IF km && km != '-1';
32         IF ctx.get_org_setting(ctx.physical_loc || ctx.search_ou, 'opac.geographic_proximity_in_miles');
33             distance = l('[_1] mi', POSIX.sprintf('%.01f', km / 1.609));
34         ELSE;
35             distance = l('[_1] km', POSIX.sprintf('%.01f', km));
36         END;
37     ELSE;
38         distance = '-';
39     END;
40 %]
41 [% distance %]
42 [%- END %]
43 [%-
44 IF has_copies or ctx.foreign_copies;
45   depth = CGI.param('copy_depth').defined ? CGI.param('copy_depth') : CGI.param('depth').defined ? CGI.param('depth') : ctx.copy_summary.last.depth;
46   total_copies = ctx.copy_summary.$depth.count;
47 %]
48 [% IF ctx.geo_sort %]
49 <form method="GET">
50 [% FOREACH p IN CGI.params.keys; NEXT IF p == 'geographic-location' %]
51   <input type="hidden" name="[% p | html %]" value="[% CGI.params.$p | html %]"/>
52 [% END %]
53 <span with="50%">
54     [% l("Sort by distance from:") %]
55     <input type="text" id="geographic-location-box" name="geographic-location" aria-label="[% l('Enter address or postal code') %]" placeholder="[% l('Enter address/postal code') %]" class="search-box" x-webkit-speech="" value="[% p = 'geographic-location'; CGI.params.$p %]"></input>
56     <button type="submit" class="btn btn-confirm">[% l('Go') %]</button>
57 </span>
58 [% p = 'geographic-location'; IF CGI.params.$p && !ctx.has_valid_coords %]
59 <span class="opac-alert">[% l('Sorry, your address is not recognized') %]</span>
60 [% END %]
61 </form>
62 [% p = 'geographic-location'; IF CGI.params.$p && ctx.has_valid_coords %]
63 <form method="GET">
64 [% FOREACH p IN CGI.params.keys; NEXT IF p == 'geographic-location' %]
65   <input type="hidden" name="[% p | html %]" value="[% CGI.params.$p | html %]"/>
66 [% END %]
67    <button type="submit" class="opac-button">[% l('Use default item sort') %]</button>
68 </form>
69 [% END %]
70 [% END %]
71
72 <div class="mt-3">
73 [% IF available == 'true'; %]
74   <a href="[% mkurl('', {available => 'false' }) %]">
75       [% l('Show All Copies') %]
76   </a>
77 [% END %]
78 [% IF available == 'false'; %]
79   <a href="[% mkurl('', {available => 'true' }) %]">
80       [% l('Show Only Available Copies') %]
81   </a>
82 [% END %]
83
84 <table class="container-fluid table table-hover mt-4 miniTable copyTable w-100" >
85     <thead>
86         <tr>
87             [% IF serial_holdings -%]
88             <th scope='col'>[% l("Issue Label") %]</th>
89             [%- ELSE -%]
90             <th scope='col'>[% l("Location") %]</th>
91             [%- END %]
92             <th scope='col'>[% l("Call Number / Copy Notes") %]</th>
93             [%- IF has_parts == 'true' %]
94             <th scope='col'>[% l("Part") %]</th>
95             [%- END %]
96             <th scope='col'>[% l("Barcode") %]</th>
97             <th scope='col'>[% l("Shelving Location") %]</th>
98             [%- IF ctx.is_staff || ctx.use_courses %]
99             <th scope='col'>[% l("Circulation Modifier") %]</th>
100             [%- END %]
101             [%- IF ctx.is_staff %]
102             <th scope='col'>[% l("Age Hold Protection") %]</th>
103             <th scope='col'>[% l("Active/Create Date") %]</th>
104             [%- END %]
105             [%- IF ctx.is_staff OR serial_holdings %]
106             <th scope='col'>[% l("Holdable?") %]</th>
107             [%- END %]
108             <th scope='col'>[% l("Status") %]</th>
109             <th scope='col'>[% l("Due Date") %]</th>
110             [%- IF ctx.use_courses %]
111             <th scope='col'>[% l("Courses") %]</th>
112             [%- END %]
113             [%- IF ctx.geo_sort && ctx.has_valid_coords %]
114             <th scope='col'>[% l("Distance") %]</th>
115             [%- END %]
116         </tr>
117     </thead>
118     <tbody>
119 [%- FOREACH peer IN ctx.foreign_copies;
120         FOREACH bib IN peer.foreign_copy_maps; %]
121     <tr><td>
122     [%- bib_lib_name = ctx.get_aou(bib.target_copy.circ_lib).name | html;
123         l("[_1] (foreign item)", bib_lib_name); -%]
124         <ul><li>
125             <span class="bib_peer_type">[% bib.peer_type.name | html %]</span>:
126             <a href="[% mkurl(ctx.opac_root _ '/record/' _ bib.target_copy.call_number.record) %]">
127                 <span class="bib_peer_title">[% peer.title | html %]</span> /
128                 <span class="bib_peer_author">[% peer.author | html %]</span>
129             </a>
130         </li></ul>
131     </td>
132     <td>[% bib.target_copy.call_number.label | html %]</td>
133     <td>[% bib.target_copy.barcode | html %]</td>
134     <td>[% bib.target_copy.location.name | html %]</td>
135     <td>[% bib.target_copy.status.name | html %]</td>
136     <td>[% date.format(ctx.parse_datetime(copy_info.due_date, copy_info.circ_circ_lib),DATE_FORMAT) %]</td>
137     [%- IF ctx.geo_sort && ctx.has_valid_coords %]
138     <td>[% display_ou_distance(bib.target_copy.circ_lib) %]</td>
139     [%- END %]
140 </tr>
141    [%- END; # FOREACH peer
142 END; # FOREACH bib
143 -%]
144         [%- last_cn = 0;
145         FOR copy_info IN copies;
146             callnum = copy_info.call_number_label;
147             NEXT IF callnum == '##URI##';
148
149             callnum_prefix = copy_info.call_number_prefix_label;
150             IF callnum_prefix != "";
151                 callnum = callnum_prefix _ " " _ callnum;
152             END;
153
154             callnum_suffix = copy_info.call_number_suffix_label;
155             IF callnum_suffix != "";
156                 callnum = callnum  _ " " _ callnum_suffix;
157             END;
158         -%]
159         <tr property="offers" typeof="Offer">
160             [%- IF serial_holdings %]
161             <td class='rdetail-issue-issue'>
162                 [%- copy_info.holding_label | html; -%]
163             </td>
164             [%- ELSE %]<td>
165             [%- INCLUDE "opac/parts/library_name_link.tt2"; -%]
166                 <link property="businessFunction" href="http://purl.org/goodrelations/v1#LeaseOut">
167                 <meta property="price" content="0.00">
168             </td>[% END %]
169             <td><span property="sku">[% callnum | html %]</span> [% IF ctx.get_org_setting(CGI.param('loc')
170                 OR ctx.aou_tree.id, 'sms.enable') == 1 %](<a href="[% mkurl(ctx.opac_root _ '/sms_cn',
171                {copy_id => copy_info.id}) %];rec=[%- ctx.bre_id -%]" rel="nofollow" vocab="">Text</a>)[% END %]
172
173        [% IF copy_info.notes; %]
174             [% FOREACH note IN copy_info.notes; %]
175                 <div><span class="copy_note_label">[% note.title _ ": " | html %]</span><span class="copy_note_value">[% note.value | html %]</span></div>
176             [% END %]
177         [% END %]
178
179        [% IF copy_info.tags; %]
180             [% FOREACH tag IN copy_info.tags; %]
181                     <div>
182                     <span class="copy_tag_type_label">[% tag.tag_type.label _ ": " | html %]</span>
183                         <span class="copy_tag_value">
184                         [% IF tag.url %]
185                             <a href="[% tag.url | html %]">
186                             [% END %]
187                                 [% tag.value | html %]
188                             [% IF tag.url %]
189                             </a>
190                             [% END %]
191                         </span>
192                     </div>
193             [% END %]
194         [% END %]
195         [% IF copy_info.statcats.size; %]
196             [% FOREACH statcat IN copy_info.statcats;
197                 IF statcat.stat_cat.opac_visible == 't'; %]
198                     <br/>[% statcat.stat_cat.name %]: [% statcat.value %]
199                 [% END;
200             END %]
201         [% END %]
202         </td>
203             [%- IF has_parts == 'true' %]
204             <td>[% copy_info.part_label | html %]</td>
205             [%- END %]
206             <td property="serialNumber">
207                 [% copy_info.barcode | html -%]
208                 [% IF ctx.is_staff %]
209                   [%- IF ctx.is_browser_staff %]
210                     <a target="_blank" href="[% ctx.base_path %]/staff/cat/item/[% copy_info.id %]">[% l('view') %]</a>
211                     [% IF ctx.has_perm('UPDATE_COPY', copy_info.circ_lib)
212                         OR ctx.has_perm('UPDATE_COPY', copy_info.call_number_owning_lib) %]
213                         <span> | </span>
214                         <a target="_blank" href="[% ctx.base_path %]/staff/cat/item/[% copy_info.id %]/edit">[% l('edit') %]</a>
215                     [% END %]
216                   [% ELSE %]
217                     <a onclick="xulG.new_tab(xulG.urls.XUL_COPY_STATUS, {}, {'from_item_details_new': true, 'barcodes': ['[%- copy_info.barcode | html | replace('\'', '\\\'') -%]']})"
218                         href="javascript:;">[% l('view') %]</a>
219                     [%# if the user can edit copies, show the copy edit link %]
220                     [% IF ctx.has_perm('UPDATE_COPY', copy_info.circ_lib)
221                         OR ctx.has_perm('UPDATE_COPY', copy_info.call_number_owning_lib) %]
222                         <span> | </span>
223                         <a href="javascript:;"
224                             onclick="xulG.volume_item_creator({copy_id : [% copy_info.id %]})">
225                             [% l(' edit') %]
226                         </a>
227                     [% END %]
228                   [% END %]
229                 [% END %]
230                 [%- IF attrs.gtin13;
231                     '<meta property="gtin13" content="' _ attrs.gtin13 _ '" />';
232                 END; -%]
233             </td>
234             <td property="availableAtOrFrom">[%- INCLUDE "opac/parts/location_name_link.tt2"; -%]</td>
235             [% IF copy_info.courses.size > 0 || ctx.is_staff %]
236             <td>[% copy_info.circ_modifier | html %]</td>
237             [% ELSIF ctx.use_courses %]
238             <td></td>
239             [% END %]
240             [% IF ctx.is_staff %]
241             <td>
242                 [% copy_info.age_protect ?
243                     ctx.get_crahp(copy_info.age_protect).name : l('None') | html %]
244             </td>
245             <td>[%
246                 IF ctx.get_org_setting(copy_info.circ_lib, 'circ.holds.age_protect.active_date') == 1;
247                     disp_date = copy_info.active_date ? copy_info.active_date : copy_info.create_date;
248                 ELSE;
249                     disp_date = copy_info.create_date;
250                 END;
251
252                 IF disp_date;
253                     date.format(
254                         ctx.parse_datetime(disp_date),
255                         DATE_FORMAT
256                     );
257                 ELSE;
258                    '-';
259                 END;
260             %]</td>
261             [% END # is_staff %]
262             [% IF ctx.is_staff OR serial_holdings %]
263             <td>[%  # Show copy/volume hold links to staff (without
264                 # checking whether they have permissions to do those).
265                 overall_holdable = (
266                     copy_info.holdable == 't' AND
267                     copy_info.location_holdable == 't' AND
268                     copy_info.status_holdable == 't'
269                 );
270                 IF overall_holdable;
271                     hold_link = '';
272                     param_sep = l(" / ");
273
274                     # Only staff get to place copy or volume holds
275                     IF ctx.is_staff;
276                         hold_link = '<a href="' _
277                             mkurl(ctx.opac_root _ '/place_hold', {
278                                 hold_target => copy_info.id,
279                                 hold_type => 'C',
280                                 hold_source_page => mkurl()
281                             }) _ '">' _ l('Copy hold') _ '</a>';
282                         IF copy_info.call_number != last_cn;
283                             last_cn = copy_info.call_number;
284                             hold_link = hold_link _ param_sep;
285                             hold_link = hold_link _ '<a href="' _
286                                 mkurl(ctx.opac_root _ '/place_hold', {
287                                     hold_target => copy_info.call_number,
288                                     hold_type => 'V',
289                                     hold_source_page => mkurl()
290                                 }) _ '">' _ l('Volume hold') _ '</a>';
291                         END;
292                         IF serial_holdings;
293                             hold_link = hold_link _ param_sep;
294                         END;
295                     END;
296                     IF serial_holdings;
297                         hold_link = hold_link _
298                             '<a class="rdetail-issue-place-hold" href="' _
299                             mkurl(ctx.opac_root _ '/place_hold', {
300                                 hold_target => copy_info.issuance,
301                                 hold_type => 'I',
302                                 hold_source_page => mkurl()
303                             }) _ '" rel="nofollow" vocab="">' _ l('Issue hold') _ '</a>';
304                     END;
305
306                     hold_link;
307                 ELSE;
308                     l("Not holdable");
309                 END %]</td>
310             [%- END %]
311             <td>[%-
312                 schema_copy_status.${copy_info.status_code};
313                 copy_info.copy_status | html;
314             -%]</td>
315             <td>[%
316                 IF copy_info.due_date;
317                     date.format(
318                         ctx.parse_datetime(copy_info.due_date, copy_info.circ_circ_lib),
319                         DATE_FORMAT
320                     );
321                 ELSE;
322                     '-';
323                 END %]</td>
324             [%- IF ctx.use_courses %]
325             <td>[%- FOREACH course IN copy_info.courses %]
326                 <div>[% course.course_number %]</div>
327             [% END %]</td>
328             [% END %]
329             [%- IF ctx.geo_sort && ctx.has_valid_coords %]
330                 <td>[% display_ou_distance(copy_info.circ_lib) %]</td>
331             [%- END %]
332         </tr>
333
334 [%- IF copy_info.peer_bib_marc.size > 0;
335 '<tr><td><ul>';
336     FOREACH bib IN copy_info.peer_bib_marc;
337         attrs = {marc_xml => bib};
338         PROCESS get_marc_attrs args=attrs %]
339 [%- IF attrs.bibid != ctx.bre_id; -%]
340     <li property="isRelatedTo" typeof="Product">
341         [%- # Map the bound-with relationship -%]
342         <a href="[% mkurl(ctx.opac_root _ '/record/' _ attrs.bibid) %]" property="url">
343             <span class="bib_peer_title" property="name">[% attrs.title | html %]</span>
344             / <span class="bib_peer_author">[% attrs.author | html %]</span>
345         </a>
346     </li>
347 [%- END; # IF attrs.bibid %]
348 [%- END; # FOREACH bib in copy_info.peer_bib_marc
349 '</ul></td></tr>';
350     END # IF copy_info.peer_bib_marc.size
351 %]
352
353 [%- END; # FOR copy_info
354 %]
355
356     </tbody>
357 </table>
358
359         [% IF ctx.copy_limit < total_copies AND NOT serial_holdings %]
360             <div class="row">
361             [%- IF ctx.copy_offset > 0;
362                 new_offset = ctx.copy_offset - ctx.copy_limit;
363                 IF new_offset < 0; new_offset = 0; END %]
364                 <div class="col">
365                 <a href="[% mkurl('', {copy_offset => new_offset, copy_limit => ctx.copy_limit}) %]">&laquo; [%
366                     l('Previous [_1]', ctx.copy_offset - new_offset) %]</a>
367                </div>
368             [%- END %]
369             [%- IF copies.size >= ctx.copy_limit AND (ctx.copy_offset + ctx.copy_limit < total_copies) %]
370                 <div class="col text-right">
371                     <a href="[% mkurl('', {copy_offset => ctx.copy_offset + ctx.copy_limit, copy_limit => ctx.copy_limit}) %]">[%
372                     l('Next [_1]', ctx.copy_limit) %] &raquo;</a>
373                 </div>
374             [%- END %]
375             </div>
376         [% END %]
377
378         [% IF NOT serial_holdings -%]
379             [%- more_copies_limit = 50 %] [%# TODO: config %]
380             [%- IF  ctx.copy_limit != more_copies_limit AND copies.size >= ctx.copy_limit AND ctx.copy_limit < total_copies %]
381                         <div class="rdetail_show_copies">
382                             <a href="[% mkurl('', {copy_limit => more_copies_limit, copy_offset => 0}) %]"><i class="fas fa-plus-square"></i> [% l('Show more copies') %]</a>
383                         </div>
384             [%- ELSIF ctx.copy_limit == more_copies_limit %]
385                         <div  class="rdetail_show_copies">
386                             <a href="[% mkurl('', {copy_limit => 0, copy_offset => 0}) %]"><i class="fas fa-minus-square"></i> [% l('Show fewer copies') %]</a>
387                         </div>
388             [%- END %]
389         [%- END %]
390 </div>
391 [% END %]