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