]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/record/copy_counts.tt2
TPAC Org unit hiding
[working/Evergreen.git] / Open-ILS / src / templates / opac / parts / record / copy_counts.tt2
1 <span id="rdetail_copy_counts">
2     <h2>[% l('Available copies') %]</h2>
3     <ul>
4     [%- depths = ctx.copy_summary.size;
5         depth = 0;
6         displayed_ous = {};
7         ou_hiding_disabled = org_hiding_disabled();
8         WHILE depth < depths;
9             ou_avail = ctx.copy_summary.$depth.available;
10             ou_id = ctx.copy_summary.$depth.org_unit;
11             cp_org_unit = ctx.get_aou(ou_id);
12             skip_me = !ou_hiding_disabled AND !ctx.org_within_hiding_scope(ou_id);
13             IF (cp_org_unit.opac_visible == 'f' AND !ctx.is_staff) OR skip_me;
14                 depth = depth + 1;
15                 NEXT;
16             END;
17             ou_name = cp_org_unit.name;
18             displayed_ous.$ou_name = 1;
19     %]
20     <li>
21     [% l('[quant,_1,copy,copies] at [_2].', ou_avail, ou_name) | html %]
22     [%- this_depth = ctx.get_aou(ou_id).ou_type.depth;
23         IF ou_avail > 0 && this_depth != ctx.copy_depth %]
24     <a href="[% mkurl('', {copy_depth => this_depth}, ['copy_offset']); %]"
25        title="[% l('Show copies at [_1]', ou_name); %]">
26        [%- l('(Show)'); %]</a>
27     [%- END; %]
28     </li>
29     [%- depth = depth + 1;
30         END;
31
32         depth = attrs.plib_copy_counts.size - 1;
33         ou_name = ctx.get_aou(attrs.plib_copy_counts.$depth.org_unit).name;
34         ou_id = attrs.plib_copy_counts.$depth.org_unit;
35         UNLESS depth < 0 || displayed_ous.exists(ou_name);
36     %]
37     [%- IF attrs.plib_copy_counts.$depth.count > 0; %]
38     <li class="preferred">[%
39         l('[_1] of [quant,_2,copy,copies] available at [_3].',
40             attrs.plib_copy_counts.$depth.available,
41             attrs.plib_copy_counts.$depth.count,
42             ou_name) | html
43     %] <a href="[% mkurl('', {locg => ou_id}, ['copy_offset']); %]"
44        title="[% l('Show copies at [_1]', ou_name); %]">[%
45        l('(Show preferred library)');
46     %]</a></li>
47     [%- END %]
48     [%- END %]
49     </ul>
50 </span>