]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/record/copy_table.tt2
Copy details link to Evergreen library page by default
[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 [%- IF has_copies; %]
29 <table cellpadding="0" cellspacing="0" border="0" width="100%" id="rdetails_status">
30     <thead>
31         <tr>
32             [% IF serial_holdings -%]
33             <th id='copy_header_holding_label'>[% l("Issue Label") %]</th>
34             [%- ELSE -%]
35             <th id='copy_header_library'>[% l("Location") %]</th>
36             [%- END %]
37             <th id='copy_header_callnumber'>[% l("Call Number / Copy Notes") %]</th>
38             [%- IF has_parts == 'true' %]
39             <th id='copy_header_part'>[% l("Part") %]</th>
40             [%- END %]
41             <th id='copy_header_barcode'>[% l("Barcode") %]</th>
42             <th id='copy_header_shelfloc'>[% l("Shelving Location") %]</th>
43             [%- IF ctx.is_staff %]
44             <th id='copy_header_age_hold'>[% l("Age Hold Protection") %]</th>
45             <th id='copy_header_create_date'>[% l("Create Date") %]</th>
46             [%- END %]
47             [%- IF ctx.is_staff OR serial_holdings %]
48             <th id='copy_header_holdable'>[% l("Holdable?") %]</th>
49             [%- END %]
50             <th id='copy_header_status'>[% l("Status") %]</th>
51             <th id='copy_header_due_date'>[% l("Due Date") %]</th>
52         </tr>
53     </thead>
54     <tbody class="copy_details_table">
55 [%- FOREACH peer IN ctx.foreign_copies;
56         FOREACH bib IN peer.foreign_copy_maps; %]
57     <tr class="copy_details_row"><td headers='copy_header_shelfloc'>
58     [%- bib_lib_name = ctx.get_aou(bib.target_copy.circ_lib).name | html;
59         l("[_1] (foreign item)", bib_lib_name); -%]
60         <ul><li>
61             <span class="bib_peer_type">[% bib.peer_type.name | html %]</span>:
62             <a href="[% mkurl(ctx.opac_root _ '/record/' _ bib.target_copy.call_number.record) %]">
63                 <span class="bib_peer_title">[% peer.title | html %]</span> / 
64                 <span class="bib_peer_author">[% peer.author | html %]</span>
65             </a>
66         </li></ul>
67     </td>
68     <td headers='copy_header_callnumber'>[% bib.target_copy.call_number.label | html %]</td>
69     <td headers='copy_header_barcode'>[% bib.target_copy.barcode | html %]</td>
70     <td headers='copy_header_shelfloc'>[% copy_info.copy_location | html %]</td>
71     <td headers='copy_header_status'>[% copy_info.copy_status | html %]</td>
72     <td headers='copy_header_due_date'>[% copy_info.due_date | html %]</td>
73 </tr>
74    [%- END; # FOREACH peer
75 END; # FOREACH bib
76 -%]
77         [%- last_cn = 0;
78         FOR copy_info IN copies;
79             callnum = copy_info.call_number_label;
80             NEXT IF callnum == '##URI##';
81
82             callnum_prefix = copy_info.call_number_prefix_label;
83             IF callnum_prefix != "";
84                 callnum = callnum_prefix _ " " _ callnum;
85             END;
86
87             callnum_suffix = copy_info.call_number_suffix_label;
88             IF callnum_suffix != "";
89                 callnum = callnum  _ " " _ callnum_suffix;
90             END;
91         -%]
92         <tr class="copy_details_offers_row" property="offers" typeof="Offer">
93             [%- IF serial_holdings %]<td headers='copy_header_holding_label' class='rdetail-issue-issue'>
94                 [%- copy_info.holding_label | html; -%]
95             </td>
96             [%- ELSE %]<td headers='copy_header_library'>
97             [%-
98                 org_name = ctx.get_aou(copy_info.circ_lib).name;
99                 org_sname = ctx.get_aou(copy_info.circ_lib).shortname;
100                 lib_url = ctx.get_org_setting(copy_info.circ_lib, 'lib.info_url');
101                 prefer_external_url = ctx.get_org_setting(copy_info.circ_lib, 'lib.prefer_external_url');
102                 UNLESS lib_url && prefer_external_url;
103                     lib_url = mkurl(ctx.opac_root _ '/library/' _ ctx.get_aou(copy_info.circ_lib).shortname, {}, 1);
104                 END; 
105                 IF lib_url; '<a property="seller" typeof="Library" href="'; lib_url | url; '">'; END;
106                 '<span property="name">'; org_name | html; '</span>';
107                 IF lib_url; '</a>'; END;
108             -%]
109                 <link property="businessFunction" href="http://purl.org/goodrelations/v1#LeaseOut">
110                 <link property="itemOffered" href="#schemarecord">
111             </td>[% END %]
112             <td headers='copy_header_callnumber'><span property="sku">[% callnum | html %]</span> [% IF ctx.get_org_setting(CGI.param('loc') OR ctx.aou_tree.id, 'sms.enable') == 1 %](<a href="[% mkurl(ctx.opac_root _ '/sms_cn', {copy_id => copy_info.id}) %]">Text</a>)[% END %]</td>
113             [%- IF has_parts == 'true' %]
114             <td headers='copy_header_part'>[% copy_info.part_label | html %]</td>
115             [%- END %]
116             <td headers='copy_header_barcode' property="serialNumber">
117                 [%- IF ctx.is_staff -%]
118                     <a href="javascript:void(0)" onclick="xulG.new_tab(xulG.urls.XUL_COPY_STATUS, {}, {'from_item_details_new': true, 'barcodes': ['[%- copy_info.barcode | html | replace('\'', '\\\'') -%]']})">[% copy_info.barcode | html %]</a>
119                 [%- ELSE -%][% copy_info.barcode | html %]
120                 [%- END -%]
121                 [%- IF attrs.gtin13;
122                     '<meta property="gtin13" content="' _ attrs.gtin13 _ '" />';
123                 END; -%]
124             </td>
125             <td headers='copy_header_shelfloc' property="availableAtOrFrom">[% copy_info.copy_location | html %]</td>
126             [%- IF ctx.is_staff %]
127             <td headers='copy_header_age_hold'>
128                 [% copy_info.age_protect ?
129                     ctx.get_crahp(copy_info.age_protect).name : l('None') | html %]
130             </td>
131             <td headers='copy_header_date_format'>[% date.format(
132                 ctx.parse_datetime(copy_info.create_date),
133                 DATE_FORMAT
134             ) %]</td>
135             [% END # is_staff %]
136             [% IF ctx.is_staff OR serial_holdings %]
137             <td headers='copy_header_holdable'>[%  # Show copy/volume hold links to staff (without
138                 # checking whether they have permissions to do those).
139                 overall_holdable = (
140                     copy_info.holdable == 't' AND
141                     copy_info.location_holdable == 't' AND
142                     copy_info.status_holdable == 't'
143                 );
144                 IF overall_holdable;
145                     hold_link = '';
146                     param_sep = l(" / ");
147
148                     # Only staff get to place copy or volume holds
149                     IF ctx.is_staff; 
150                         hold_link = '<a href="' _
151                             mkurl(ctx.opac_root _ '/place_hold', {
152                                 hold_target => copy_info.id,
153                                 hold_type => 'C',
154                                 hold_source_page => mkurl()
155                             }) _ '">' _ l('Copy hold') _ '</a>';
156                         IF copy_info.call_number != last_cn;
157                             last_cn = copy_info.call_number; 
158                             hold_link = hold_link _ param_sep;
159                             hold_link = hold_link _ '<a href="' _
160                                 mkurl(ctx.opac_root _ '/place_hold', {
161                                     hold_target => copy_info.call_number,
162                                     hold_type => 'V',
163                                     hold_source_page => mkurl()
164                                 }) _ '">' _ l('Volume hold') _ '</a>';
165                         END;
166                         IF serial_holdings;
167                             hold_link = hold_link _ param_sep;
168                         END;
169                     END; 
170                     IF serial_holdings; 
171                         hold_link = hold_link _
172                             '<a class="rdetail-issue-place-hold" href="' _
173                             mkurl(ctx.opac_root _ '/place_hold', {
174                                 hold_target => copy_info.issuance,
175                                 hold_type => 'I',
176                                 hold_source_page => mkurl()
177                             }) _ '">' _ l('Issue hold') _ '</a>';
178                     END; 
179
180                     hold_link;
181                 ELSE; 
182                     l("Not holdable");
183                 END %]</td>
184             [%- END %]
185             <td headers='copy_header_status'>[%-
186                 schema_copy_status.${copy_info.status_code};
187                 copy_info.copy_status | html;
188             -%]</td>
189             <td headers='copy_header_due_date'>[%
190                 IF copy_info.due_date;
191                     date.format(
192                         ctx.parse_datetime(copy_info.due_date),
193                         DATE_FORMAT
194                     );
195                 ELSE;
196                     '-';
197                 END %]</td>
198         </tr>
199
200         [% IF copy_info.notes; %]
201             [% FOREACH note IN copy_info.notes; %]
202                 <tr><td>&nbsp;</td><td class="copy_note" colspan="4" property="description"><strong>[% note.title | html %]:</strong> [% note.value | html %]</td></tr>
203             [% END %]
204         [% END %]
205
206 <tr><td headers='copy_header_shelfloc'>
207 [%- IF copy_info.peer_bib_marc.size > 1;
208 '<ul>';
209     FOREACH bib IN copy_info.peer_bib_marc;
210         attrs = {marc_xml => bib};
211         PROCESS get_marc_attrs args=attrs %]
212 [%- IF attrs.bibid != ctx.bre_id; -%]
213     <li property="isRelatedTo" typeof="Product">
214         [%- # Map the bound-with relationship -%]
215         <a href="[% mkurl(ctx.opac_root _ '/record/' _ attrs.bibid) %]" property="url">
216             <span class="bib_peer_title" property="name">[% attrs.title | html %]</span>
217             / <span class="bib_peer_author">[% attrs.author | html %]</span>
218         </a>
219     </li>
220 [%- END; # IF attrs.bibid %]
221 [%- END; # FOREACH bib in copy_info.peer_bib_marc
222 '</ul>';
223     END # IF copy_info.peer_bib_marc.size
224 %]
225 </td></tr>
226 [%- END; # FOR copy_info
227 %]
228         <tr>
229         [%- IF ctx.copy_offset > 0 AND NOT serial_holdings;
230             new_offset = ctx.copy_offset - ctx.copy_limit;
231             IF new_offset < 0; new_offset = 0; END %]
232             <td>
233                 <a href="[% mkurl('', {copy_offset => new_offset, copy_limit => ctx.copy_limit}) %]">&laquo; [%
234                     l('Previous [_1]', ctx.copy_offset - new_offset) %]</a>
235             </td>
236         [%- END %]
237         [%- IF copies.size >= ctx.copy_limit AND NOT serial_holdings %]
238             <td>
239                 <a href="[% mkurl('', {copy_offset => ctx.copy_offset + ctx.copy_limit, copy_limit => ctx.copy_limit}) %]">[%
240                     l('Next [_1]', ctx.copy_limit) %] &raquo;</a>
241             </td>
242         [%- END %]
243         </tr>
244         [% IF NOT serial_holdings -%]
245         <tr>
246             <td>
247                 [%- more_copies_limit = 50 %] [%# TODO: config %]
248                 [%- IF  ctx.copy_limit != more_copies_limit AND copies.size >= ctx.copy_limit %]
249                     <div class="rdetail_show_copies">
250                         <img src="[% ctx.media_prefix %]/images/plus_sign.png" />
251                         <a href="[% mkurl('', {copy_limit => more_copies_limit, copy_offset => 0}) %]">[% l('Show more copies') %]</a>
252                     </div>
253                 [%- ELSIF ctx.copy_limit == more_copies_limit %]
254                     <div  class="rdetail_show_copies">
255                         <img src="[% ctx.media_prefix %]/images/minus_sign.png" />
256                         <a href="[% mkurl('', {copy_limit => 0, copy_offset => 0}) %]">[% l('Show fewer copies') %]</a>
257                     </div>
258                 [%- END %]
259             </td>
260         </tr>
261         [%- END %]
262     </tbody>
263 </table>
264 [% END; %]