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