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