]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates-bootstrap/opac/parts/record/copy_table.tt2
dad40fd500c97b5368f0e9af8b2df2a6aace190f
[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             [%- END %]
99             [%- IF ctx.geo_sort && ctx.has_valid_coords %]
100             <th scope='col'>[% l("Distance") %]</th>
101             [%- END %]
102         </tr>
103     </thead>
104     <tbody>
105 [%- FOREACH peer IN ctx.foreign_copies;
106         FOREACH bib IN peer.foreign_copy_maps; %]
107     <tr><td>
108     [%- bib_lib_name = ctx.get_aou(bib.target_copy.circ_lib).name | html;
109         l("[_1] (foreign item)", bib_lib_name); -%]
110         <ul><li>
111             <span class="bib_peer_type">[% bib.peer_type.name | html %]</span>:
112             <a href="[% mkurl(ctx.opac_root _ '/record/' _ bib.target_copy.call_number.record) %]">
113                 <span class="bib_peer_title">[% peer.title | html %]</span> /
114                 <span class="bib_peer_author">[% peer.author | html %]</span>
115             </a>
116         </li></ul>
117     </td>
118     <td>[% bib.target_copy.call_number.label | html %]</td>
119     <td>[% bib.target_copy.barcode | html %]</td>
120     <td>[% bib.target_copy.location.name | html %]</td>
121     <td>[% bib.target_copy.status.name | html %]</td>
122     <td>[% date.format(ctx.parse_datetime(copy_info.due_date, copy_info.circ_circ_lib),DATE_FORMAT) %]</td>
123     [%- IF ctx.geo_sort && ctx.has_valid_coords %]
124     <td>[% display_ou_distance(bib.target_copy.circ_lib) %]</td>
125     [%- END %]
126 </tr>
127    [%- END; # FOREACH peer
128 END; # FOREACH bib
129 -%]
130         [%- last_cn = 0;
131         FOR copy_info IN copies;
132             callnum = copy_info.call_number_label;
133             NEXT IF callnum == '##URI##';
134
135             callnum_prefix = copy_info.call_number_prefix_label;
136             IF callnum_prefix != "";
137                 callnum = callnum_prefix _ " " _ callnum;
138             END;
139
140             callnum_suffix = copy_info.call_number_suffix_label;
141             IF callnum_suffix != "";
142                 callnum = callnum  _ " " _ callnum_suffix;
143             END;
144         -%]
145         <tr property="offers" typeof="Offer">
146             [%- IF serial_holdings %]
147             <td class='rdetail-issue-issue'>
148                 [%- copy_info.holding_label | html; -%]
149             </td>
150             [%- ELSE %]<td>
151             [%- INCLUDE "opac/parts/library_name_link.tt2"; -%]
152                 <link property="businessFunction" href="http://purl.org/goodrelations/v1#LeaseOut">
153                 <meta property="price" content="0.00">
154             </td>[% END %]
155             <td><span property="sku">[% callnum | html %]</span> [% IF ctx.get_org_setting(CGI.param('loc')
156                 OR ctx.aou_tree.id, 'sms.enable') == 1 %](<a href="[% mkurl(ctx.opac_root _ '/sms_cn',
157                {copy_id => copy_info.id}) %];rec=[%- ctx.bre_id -%]" rel="nofollow" vocab="">Text</a>)[% END %]</td>
158             [%- IF has_parts == 'true' %]
159             <td>[% copy_info.part_label | html %]</td>
160             [%- END %]
161             <td property="serialNumber">
162                 [% copy_info.barcode | html -%]
163                 [% IF ctx.is_staff %]
164                   [%- IF ctx.is_browser_staff %]
165                     <a target="_blank" href="[% ctx.base_path %]/staff/cat/item/[% copy_info.id %]">[% l('view') %]</a>
166                     [% IF ctx.has_perm('UPDATE_COPY', copy_info.circ_lib)
167                         OR ctx.has_perm('UPDATE_COPY', copy_info.call_number_owning_lib) %]
168                         <span> | </span>
169                         <a target="_blank" href="[% ctx.base_path %]/staff/cat/item/[% copy_info.id %]/edit">[% l('edit') %]</a>
170                     [% END %]
171                   [% ELSE %]
172                     <a onclick="xulG.new_tab(xulG.urls.XUL_COPY_STATUS, {}, {'from_item_details_new': true, 'barcodes': ['[%- copy_info.barcode | html | replace('\'', '\\\'') -%]']})"
173                         href="javascript:;">[% l('view') %]</a>
174                     [%# if the user can edit copies, show the copy edit link %]
175                     [% IF ctx.has_perm('UPDATE_COPY', copy_info.circ_lib)
176                         OR ctx.has_perm('UPDATE_COPY', copy_info.call_number_owning_lib) %]
177                         <span> | </span>
178                         <a href="javascript:;"
179                             onclick="xulG.volume_item_creator({copy_id : [% copy_info.id %]})">
180                             [% l(' edit') %]
181                         </a>
182                     [% END %]
183                   [% END %]
184                 [% END %]
185                 [%- IF attrs.gtin13;
186                     '<meta property="gtin13" content="' _ attrs.gtin13 _ '" />';
187                 END; -%]
188             </td>
189             <td property="availableAtOrFrom">[%- INCLUDE "opac/parts/location_name_link.tt2"; -%]</td>
190             [% IF copy_info.courses.size > 0 || ctx.is_staff %]
191             <td>[% copy_info.circ_modifier | html %]</td>
192             [% ELSIF ctx.use_courses %]
193             <td></td>
194             [% END %]
195             [% IF ctx.is_staff %]
196             <td>
197                 [% copy_info.age_protect ?
198                     ctx.get_crahp(copy_info.age_protect).name : l('None') | html %]
199             </td>
200             <td>[%
201                 IF ctx.get_org_setting(copy_info.circ_lib, 'circ.holds.age_protect.active_date') == 1;
202                     disp_date = copy_info.active_date ? copy_info.active_date : copy_info.create_date;
203                 ELSE;
204                     disp_date = copy_info.create_date;
205                 END;
206
207                 IF disp_date;
208                     date.format(
209                         ctx.parse_datetime(disp_date),
210                         DATE_FORMAT
211                     );
212                 ELSE;
213                    '-';
214                 END;
215             %]</td>
216             [% END # is_staff %]
217             [% IF ctx.is_staff OR serial_holdings %]
218             <td>[%  # Show copy/volume hold links to staff (without
219                 # checking whether they have permissions to do those).
220                 overall_holdable = (
221                     copy_info.holdable == 't' AND
222                     copy_info.location_holdable == 't' AND
223                     copy_info.status_holdable == 't'
224                 );
225                 IF overall_holdable;
226                     hold_link = '';
227                     param_sep = l(" / ");
228
229                     # Only staff get to place copy or volume holds
230                     IF ctx.is_staff;
231                         hold_link = '<a href="' _
232                             mkurl(ctx.opac_root _ '/place_hold', {
233                                 hold_target => copy_info.id,
234                                 hold_type => 'C',
235                                 hold_source_page => mkurl()
236                             }) _ '">' _ l('Copy hold') _ '</a>';
237                         IF copy_info.call_number != last_cn;
238                             last_cn = copy_info.call_number;
239                             hold_link = hold_link _ param_sep;
240                             hold_link = hold_link _ '<a href="' _
241                                 mkurl(ctx.opac_root _ '/place_hold', {
242                                     hold_target => copy_info.call_number,
243                                     hold_type => 'V',
244                                     hold_source_page => mkurl()
245                                 }) _ '">' _ l('Volume hold') _ '</a>';
246                         END;
247                         IF serial_holdings;
248                             hold_link = hold_link _ param_sep;
249                         END;
250                     END;
251                     IF serial_holdings;
252                         hold_link = hold_link _
253                             '<a class="rdetail-issue-place-hold" href="' _
254                             mkurl(ctx.opac_root _ '/place_hold', {
255                                 hold_target => copy_info.issuance,
256                                 hold_type => 'I',
257                                 hold_source_page => mkurl()
258                             }) _ '" rel="nofollow" vocab="">' _ l('Issue hold') _ '</a>';
259                     END;
260
261                     hold_link;
262                 ELSE;
263                     l("Not holdable");
264                 END %]</td>
265             [%- END %]
266             <td>[%-
267                 schema_copy_status.${copy_info.status_code};
268                 copy_info.copy_status | html;
269             -%]</td>
270             <td>[%
271                 IF copy_info.due_date;
272                     date.format(
273                         ctx.parse_datetime(copy_info.due_date, copy_info.circ_circ_lib),
274                         DATE_FORMAT
275                     );
276                 ELSE;
277                     '-';
278                 END %]</td>
279             [%- IF ctx.use_courses %]
280             <td>[%- FOREACH course IN copy_info.courses %]
281                 <div>[% course.course_number %]</div>
282             [% END %]</td>
283             [% END %]
284             [%- IF ctx.geo_sort && ctx.has_valid_coords %]
285                 <td>[% display_ou_distance(copy_info.circ_lib) %]</td>
286             [%- END %]
287         </tr>
288
289         [% IF copy_info.notes; %]
290             [% FOREACH note IN copy_info.notes; %]
291                 <tr><td>&nbsp;</td><td class="copy_note" colspan="4" property="description"><strong>[% note.title | html %]:</strong> [% note.value | html %]</td></tr>
292             [% END %]
293         [% END %]
294
295         [% IF copy_info.tags; %]
296             [% FOREACH tag IN copy_info.tags; %]
297                 <tr class="copy_tag_row">
298                     <td>&nbsp;</td>
299                     <td class="copy_tag" colspan="4">
300                     <span class="copy_tag_type_label">[% tag.tag_type.label _ ": " | html %]</span>
301                         <span class="copy_tag_value">
302                         [% IF tag.url %]
303                             <a href="[% tag.url | html %]">
304                             [% END %]
305                                 [% tag.value | html %]
306                             [% IF tag.url %]
307                             </a>
308                             [% END %]
309                         </span>
310                     </td>
311                 </tr>
312             [% END %]
313         [% END %]
314
315
316 [%- IF copy_info.peer_bib_marc.size > 0;
317 '<tr><td><ul>';
318     FOREACH bib IN copy_info.peer_bib_marc;
319         attrs = {marc_xml => bib};
320         PROCESS get_marc_attrs args=attrs %]
321 [%- IF attrs.bibid != ctx.bre_id; -%]
322     <li property="isRelatedTo" typeof="Product">
323         [%- # Map the bound-with relationship -%]
324         <a href="[% mkurl(ctx.opac_root _ '/record/' _ attrs.bibid) %]" property="url">
325             <span class="bib_peer_title" property="name">[% attrs.title | html %]</span>
326             / <span class="bib_peer_author">[% attrs.author | html %]</span>
327         </a>
328     </li>
329 [%- END; # IF attrs.bibid %]
330 [%- END; # FOREACH bib in copy_info.peer_bib_marc
331 '</ul></td></tr>';
332     END # IF copy_info.peer_bib_marc.size
333 %]
334
335 [%- END; # FOR copy_info
336 %]
337         [% IF ctx.copy_limit < total_copies AND NOT serial_holdings %]
338             <tr class="offset">
339             [%- IF ctx.copy_offset > 0;
340                 new_offset = ctx.copy_offset - ctx.copy_limit;
341                 IF new_offset < 0; new_offset = 0; END %]
342                 <td>
343                 <a href="[% mkurl('', {copy_offset => new_offset, copy_limit => ctx.copy_limit}) %]">&laquo; [%
344                     l('Previous [_1]', ctx.copy_offset - new_offset) %]</a>
345                 </td>
346             [%- END %]
347             [%- IF copies.size >= ctx.copy_limit AND (ctx.copy_offset + ctx.copy_limit < total_copies) %]
348                 <td>
349                     <a href="[% mkurl('', {copy_offset => ctx.copy_offset + ctx.copy_limit, copy_limit => ctx.copy_limit}) %]">[%
350                     l('Next [_1]', ctx.copy_limit) %] &raquo;</a>
351                 </td>
352             [%- END %]
353             </tr>
354         [% END %]
355
356         [% IF NOT serial_holdings -%]
357             [%- more_copies_limit = 50 %] [%# TODO: config %]
358             [%- IF  ctx.copy_limit != more_copies_limit AND copies.size >= ctx.copy_limit AND ctx.copy_limit < total_copies %]
359                 <tr class="not_serial">
360                     <td>
361                         <div class="rdetail_show_copies">
362                             <a href="[% mkurl('', {copy_limit => more_copies_limit, copy_offset => 0}) %]"><i class="fas fa-plus-square"></i> [% l('Show more copies') %]</a>
363                         </div>
364                     </td>
365                 </tr>
366             [%- ELSIF ctx.copy_limit == more_copies_limit %]
367                 <tr class="not_serial">
368                     <td>
369                         <div  class="rdetail_show_copies">
370                             <a href="[% mkurl('', {copy_limit => 0, copy_offset => 0}) %]"><i class="fas fa-minus-square"></i> [% l('Show fewer copies') %]</a>
371                         </div>
372                     </td>
373                 </tr>
374             [%- END %]
375         [%- END %]
376     </tbody>
377 </table>
378 [% END %]