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