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