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