]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates-bootstrap/opac/parts/record/copy_table.tt2
LP1908612 Bootstrap Opac - Limit to Available
[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         </td>
196             [%- IF has_parts == 'true' %]
197             <td>[% copy_info.part_label | html %]</td>
198             [%- END %]
199             <td property="serialNumber">
200                 [% copy_info.barcode | html -%]
201                 [% IF ctx.is_staff %]
202                   [%- IF ctx.is_browser_staff %]
203                     <a target="_blank" href="[% ctx.base_path %]/staff/cat/item/[% copy_info.id %]">[% l('view') %]</a>
204                     [% IF ctx.has_perm('UPDATE_COPY', copy_info.circ_lib)
205                         OR ctx.has_perm('UPDATE_COPY', copy_info.call_number_owning_lib) %]
206                         <span> | </span>
207                         <a target="_blank" href="[% ctx.base_path %]/staff/cat/item/[% copy_info.id %]/edit">[% l('edit') %]</a>
208                     [% END %]
209                   [% ELSE %]
210                     <a onclick="xulG.new_tab(xulG.urls.XUL_COPY_STATUS, {}, {'from_item_details_new': true, 'barcodes': ['[%- copy_info.barcode | html | replace('\'', '\\\'') -%]']})"
211                         href="javascript:;">[% l('view') %]</a>
212                     [%# if the user can edit copies, show the copy edit link %]
213                     [% IF ctx.has_perm('UPDATE_COPY', copy_info.circ_lib)
214                         OR ctx.has_perm('UPDATE_COPY', copy_info.call_number_owning_lib) %]
215                         <span> | </span>
216                         <a href="javascript:;"
217                             onclick="xulG.volume_item_creator({copy_id : [% copy_info.id %]})">
218                             [% l(' edit') %]
219                         </a>
220                     [% END %]
221                   [% END %]
222                 [% END %]
223                 [%- IF attrs.gtin13;
224                     '<meta property="gtin13" content="' _ attrs.gtin13 _ '" />';
225                 END; -%]
226             </td>
227             <td property="availableAtOrFrom">[%- INCLUDE "opac/parts/location_name_link.tt2"; -%]</td>
228             [% IF copy_info.courses.size > 0 || ctx.is_staff %]
229             <td>[% copy_info.circ_modifier | html %]</td>
230             [% ELSIF ctx.use_courses %]
231             <td></td>
232             [% END %]
233             [% IF ctx.is_staff %]
234             <td>
235                 [% copy_info.age_protect ?
236                     ctx.get_crahp(copy_info.age_protect).name : l('None') | html %]
237             </td>
238             <td>[%
239                 IF ctx.get_org_setting(copy_info.circ_lib, 'circ.holds.age_protect.active_date') == 1;
240                     disp_date = copy_info.active_date ? copy_info.active_date : copy_info.create_date;
241                 ELSE;
242                     disp_date = copy_info.create_date;
243                 END;
244
245                 IF disp_date;
246                     date.format(
247                         ctx.parse_datetime(disp_date),
248                         DATE_FORMAT
249                     );
250                 ELSE;
251                    '-';
252                 END;
253             %]</td>
254             [% END # is_staff %]
255             [% IF ctx.is_staff OR serial_holdings %]
256             <td>[%  # Show copy/volume hold links to staff (without
257                 # checking whether they have permissions to do those).
258                 overall_holdable = (
259                     copy_info.holdable == 't' AND
260                     copy_info.location_holdable == 't' AND
261                     copy_info.status_holdable == 't'
262                 );
263                 IF overall_holdable;
264                     hold_link = '';
265                     param_sep = l(" / ");
266
267                     # Only staff get to place copy or volume holds
268                     IF ctx.is_staff;
269                         hold_link = '<a href="' _
270                             mkurl(ctx.opac_root _ '/place_hold', {
271                                 hold_target => copy_info.id,
272                                 hold_type => 'C',
273                                 hold_source_page => mkurl()
274                             }) _ '">' _ l('Copy hold') _ '</a>';
275                         IF copy_info.call_number != last_cn;
276                             last_cn = copy_info.call_number;
277                             hold_link = hold_link _ param_sep;
278                             hold_link = hold_link _ '<a href="' _
279                                 mkurl(ctx.opac_root _ '/place_hold', {
280                                     hold_target => copy_info.call_number,
281                                     hold_type => 'V',
282                                     hold_source_page => mkurl()
283                                 }) _ '">' _ l('Volume hold') _ '</a>';
284                         END;
285                         IF serial_holdings;
286                             hold_link = hold_link _ param_sep;
287                         END;
288                     END;
289                     IF serial_holdings;
290                         hold_link = hold_link _
291                             '<a class="rdetail-issue-place-hold" href="' _
292                             mkurl(ctx.opac_root _ '/place_hold', {
293                                 hold_target => copy_info.issuance,
294                                 hold_type => 'I',
295                                 hold_source_page => mkurl()
296                             }) _ '" rel="nofollow" vocab="">' _ l('Issue hold') _ '</a>';
297                     END;
298
299                     hold_link;
300                 ELSE;
301                     l("Not holdable");
302                 END %]</td>
303             [%- END %]
304             <td>[%-
305                 schema_copy_status.${copy_info.status_code};
306                 copy_info.copy_status | html;
307             -%]</td>
308             <td>[%
309                 IF copy_info.due_date;
310                     date.format(
311                         ctx.parse_datetime(copy_info.due_date, copy_info.circ_circ_lib),
312                         DATE_FORMAT
313                     );
314                 ELSE;
315                     '-';
316                 END %]</td>
317             [%- IF ctx.use_courses %]
318             <td>[%- FOREACH course IN copy_info.courses %]
319                 <div>[% course.course_number %]</div>
320             [% END %]</td>
321             [% END %]
322             [%- IF ctx.geo_sort && ctx.has_valid_coords %]
323                 <td>[% display_ou_distance(copy_info.circ_lib) %]</td>
324             [%- END %]
325         </tr>
326
327 [%- IF copy_info.peer_bib_marc.size > 0;
328 '<tr><td><ul>';
329     FOREACH bib IN copy_info.peer_bib_marc;
330         attrs = {marc_xml => bib};
331         PROCESS get_marc_attrs args=attrs %]
332 [%- IF attrs.bibid != ctx.bre_id; -%]
333     <li property="isRelatedTo" typeof="Product">
334         [%- # Map the bound-with relationship -%]
335         <a href="[% mkurl(ctx.opac_root _ '/record/' _ attrs.bibid) %]" property="url">
336             <span class="bib_peer_title" property="name">[% attrs.title | html %]</span>
337             / <span class="bib_peer_author">[% attrs.author | html %]</span>
338         </a>
339     </li>
340 [%- END; # IF attrs.bibid %]
341 [%- END; # FOREACH bib in copy_info.peer_bib_marc
342 '</ul></td></tr>';
343     END # IF copy_info.peer_bib_marc.size
344 %]
345
346 [%- END; # FOR copy_info
347 %]
348         [% IF ctx.copy_limit < total_copies AND NOT serial_holdings %]
349             <tr class="offset">
350             [%- IF ctx.copy_offset > 0;
351                 new_offset = ctx.copy_offset - ctx.copy_limit;
352                 IF new_offset < 0; new_offset = 0; END %]
353                 <td>
354                 <a href="[% mkurl('', {copy_offset => new_offset, copy_limit => ctx.copy_limit}) %]">&laquo; [%
355                     l('Previous [_1]', ctx.copy_offset - new_offset) %]</a>
356                 </td>
357             [%- END %]
358             [%- IF copies.size >= ctx.copy_limit AND (ctx.copy_offset + ctx.copy_limit < total_copies) %]
359                 <td>
360                     <a href="[% mkurl('', {copy_offset => ctx.copy_offset + ctx.copy_limit, copy_limit => ctx.copy_limit}) %]">[%
361                     l('Next [_1]', ctx.copy_limit) %] &raquo;</a>
362                 </td>
363             [%- END %]
364             </tr>
365         [% END %]
366
367         [% IF NOT serial_holdings -%]
368             [%- more_copies_limit = 50 %] [%# TODO: config %]
369             [%- IF  ctx.copy_limit != more_copies_limit AND copies.size >= ctx.copy_limit AND ctx.copy_limit < total_copies %]
370                 <tr class="not_serial">
371                     <td>
372                         <div class="rdetail_show_copies">
373                             <a href="[% mkurl('', {copy_limit => more_copies_limit, copy_offset => 0}) %]"><i class="fas fa-plus-square"></i> [% l('Show more copies') %]</a>
374                         </div>
375                     </td>
376                 </tr>
377             [%- ELSIF ctx.copy_limit == more_copies_limit %]
378                 <tr class="not_serial">
379                     <td>
380                         <div  class="rdetail_show_copies">
381                             <a href="[% mkurl('', {copy_limit => 0, copy_offset => 0}) %]"><i class="fas fa-minus-square"></i> [% l('Show fewer copies') %]</a>
382                         </div>
383                     </td>
384                 </tr>
385             [%- END %]
386         [%- END %]
387     </tbody>
388 </table>
389 [% END %]