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