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