]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/record/copy_table.tt2
LP1108867: i18n support for holds in record details
[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_callnmber'>[% l("Call Number") %]</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         [%- last_cn = 0;
56         FOR copy_info IN copies;
57             callnum = copy_info.call_number_label;
58             NEXT IF callnum == '##URI##';
59
60             callnum_prefix = copy_info.call_number_prefix_label;
61             IF callnum_prefix != "";
62                 callnum = callnum_prefix _ " " _ callnum;
63             END;
64
65             callnum_suffix = copy_info.call_number_suffix_label;
66             IF callnum_suffix != "";
67                 callnum = callnum  _ " " _ callnum_suffix;
68             END;
69         -%]
70         <tr>
71             [%- IF serial_holdings %]<td header='copy_header_holding_label' class='rdetail-issue-issue'>
72                 [%- copy_info.holding_label | html; -%]
73             </td>
74             [%- ELSE %]<td header='copy_header_library'>
75             [%-
76                 org_name = ctx.get_aou(copy_info.circ_lib).name;
77                 org_name | html
78             -%]
79             </td>[% END %]
80             <td header='copy_header_callnumber'>[% callnum | html %] [% 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>
81             [%- IF has_parts == 'true' %]
82             <td header='copy_header_part'>[% copy_info.part_label | html %]</td>
83             [%- END %]
84             <td header='copy_header_barcode'>
85                 [%- IF ctx.is_staff -%]
86                     <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>
87                 [%- ELSE -%][% copy_info.barcode | html %]
88                 [%- END -%]</td>
89             <td header='copy_header_shelfloc'>[% copy_info.copy_location | html %]</td>
90             [%- IF ctx.is_staff %]
91             <td header='copy_header_age_hold'>
92                 [% copy_info.age_protect ?
93                     ctx.get_crahp(copy_info.age_protect).name : l('None') | html %]
94             </td>
95             <td header='copy_header_date_format'>[% date.format(
96                 ctx.parse_datetime(copy_info.create_date),
97                 DATE_FORMAT
98             ) %]</td>
99             [% END # is_staff %]
100             [% IF ctx.is_staff OR serial_holdings %]
101             <td header='copy_header_holdable'>[%  # Show copy/volume hold links to staff (without
102                 # checking whether they have permissions to do those).
103                 overall_holdable = (
104                     copy_info.holdable == 't' AND
105                     copy_info.location_holdable == 't' AND
106                     copy_info.status_holdable == 't'
107                 );
108                 IF overall_holdable;
109                     hold_link = '';
110                     param_sep = l(" / ");
111
112                     # Only staff get to place copy or volume holds
113                     IF ctx.is_staff; 
114                         hold_link = '<a href="' _
115                             mkurl(ctx.opac_root _ '/place_hold', {
116                                 hold_target => copy_info.id,
117                                 hold_type => 'C',
118                                 hold_source_page => mkurl()
119                             }) _ '">' _ l('Copy hold') _ '</a>';
120                         IF copy_info.call_number != last_cn;
121                             last_cn = copy_info.call_number; 
122                             hold_link = hold_link _ param_sep;
123                             hold_link = hold_link _ '<a href="' _
124                                 mkurl(ctx.opac_root _ '/place_hold', {
125                                     hold_target => copy_info.call_number,
126                                     hold_type => 'V',
127                                     hold_source_page => mkurl()
128                                 }) _ '">' _ l('Volume hold') _ '</a>';
129                         END;
130                         IF serial_holdings;
131                             hold_link = hold_link _ param_sep;
132                         END;
133                     END; 
134                     IF serial_holdings; 
135                         hold_link = hold_link _
136                             '<a class="rdetail-issue-place-hold" href="' _
137                             mkurl(ctx.opac_root _ '/place_hold', {
138                                 hold_target => copy_info.issuance,
139                                 hold_type => 'I',
140                                 hold_source_page => mkurl()
141                             }) _ '">' _ l('Issue hold') _ '</a>';
142                     END; 
143
144                     hold_link;
145                 ELSE; 
146                     l("Not holdable");
147                 END %]</td>
148             [%- END %]
149             <td header='copy_header_status'>[% copy_info.copy_status | html %]</td>
150             <td header='due_date'>[%
151                 IF copy_info.due_date;
152                     date.format(
153                         ctx.parse_datetime(copy_info.due_date),
154                         DATE_FORMAT
155                     );
156                 ELSE;
157                     '-';
158                 END %]</td>
159         </tr>
160         [%- END %]
161         <tr>
162         [%- IF ctx.copy_offset > 0 AND NOT serial_holdings;
163             new_offset = ctx.copy_offset - ctx.copy_limit;
164             IF new_offset < 0; new_offset = 0; END %]
165             <td>
166                 <a href="[% mkurl('', {copy_offset => new_offset, copy_limit => ctx.copy_limit}) %]">&laquo; [%
167                     l('Previous [_1]', ctx.copy_offset - new_offset) %]</a>
168             </td>
169         [%- END %]
170         [%- IF copies.size >= ctx.copy_limit AND NOT serial_holdings %]
171             <td>
172                 <a href="[% mkurl('', {copy_offset => ctx.copy_offset + ctx.copy_limit, copy_limit => ctx.copy_limit}) %]">[%
173                     l('Next [_1]', ctx.copy_limit) %] &raquo;</a>
174             </td>
175         [%- END %]
176         </tr>
177         [% IF NOT serial_holdings -%]
178         <tr>
179             <td>
180                 [%- more_copies_limit = 50 %] [%# TODO: config %]
181                 [%- IF  ctx.copy_limit != more_copies_limit AND copies.size >= ctx.copy_limit %]
182                     <div class="rdetail_show_copies">
183                         <img src="[% ctx.media_prefix %]/images/plus_sign.png" />
184                         <a href="[% mkurl('', {copy_limit => more_copies_limit, copy_offset => 0}) %]">[% l('Show more copies') %]</a>
185                     </div>
186                 [%- ELSIF ctx.copy_limit == more_copies_limit %]
187                     <div  class="rdetail_show_copies">
188                         <img src="[% ctx.media_prefix %]/images/minus_sign.png" />
189                         <a href="[% mkurl('', {copy_limit => 0, copy_offset => 0}) %]">[% l('Show fewer copies') %]</a>
190                     </div>
191                 [%- END %]
192             </td>
193         </tr>
194         [%- END %]
195     </tbody>
196 </table>
197 [% END; %]