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