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