]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/opac/parts/org_selector.tt2
TPAC: Reset Form and New Search should clear queries
[Evergreen.git] / Open-ILS / src / templates / opac / parts / org_selector.tt2
1 [%
2 # Org Unit Selector Widget :
3 #   INCLUDE build_org_selector id='selector-id' name='selector-name' 
4 #       value=org_id show_loc_groups=1/0 can_have_vols_only=1/0
5 #
6 # NOTE: DO NOT USE PROCESS
7 # Use of PROCESS results in internal variables, such as value or org_unit, to "leak" out
8
9 PROCESS "opac/parts/misc_util.tt2";
10 PROCESS get_library;
11
12 BLOCK build_org_selector;
13     node_stack = [{org => org_unit || ctx.aouct_tree || ctx.aou_tree}];
14     inherited_vis = ctx.get_cgf('opac.org_unit.non_inherited_visibility').enabled == 'f';
15
16     IF !name; 
17         name = loc_name;
18     END;
19     IF !value;
20         value = loc_value;
21     END;
22     %]
23
24     <select [% IF id %] id='[% id %]' [% END %] name='[% name %]'>
25     [% 
26         WHILE node_stack.size > 0; 
27             node = node_stack.pop();
28             org_unit = node.org;
29             loc_grp = node.loc_grp;
30             ou_id = org_unit.id;
31             css_class = '';
32             disabled = '';
33             selected = '';
34             visible = org_unit.opac_visible == 't';
35
36             # org and all children are invisible.
37             NEXT IF !visible AND inherited_vis AND !ctx.is_staff;
38
39             IF !loc_grp; # processing an org unit
40
41                 top_loc_groups = [];
42                 IF show_loc_groups;
43                     # add the location groups that sort below the child org units
44                     FOR grp IN ctx.copy_location_groups.$ou_id.reverse;
45                         IF grp.top == 't';
46                             top_loc_groups.push(grp);
47                         ELSE;
48                             node_stack.push({org => org_unit, loc_grp => grp});
49                         END;
50                     END;
51                 END;
52
53                 # add the child org units
54                 FOR child IN org_unit.children.reverse;
55                     node_stack.push({org => child});
56                 END;
57
58                 # add the location groups that sort to the top
59                 # above the child org units
60                 FOR grp IN top_loc_groups;
61                     node_stack.push({org => org_unit, loc_grp => grp});
62                 END;
63
64             END;
65
66             # This org unit is not publicly visible (though its children may be).
67             NEXT UNLESS ctx.is_staff OR visible;
68
69             node_value = ou_id;
70             IF loc_grp;
71                 node_value = node_value _ ':' _ loc_grp.id; 
72                 css_class = 'class="loc_grp"';
73             ELSE;
74                 css_class = 'class="org_unit"';
75             END;
76
77             IF can_have_vols_only AND org_unit.ou_type.can_have_vols != 't';
78                 disabled = 'disabled="disabled"';
79             ELSIF node_value == value;
80                 selected = 'selected="selected"';
81             END; 
82
83             pad_depth = 0;
84
85             # copy loc groups appear as children of the owning org unit
86             SET pad_depth = pad_depth + 1 IF loc_grp;
87
88             # determine the depth by calculating the distance from the root
89             porg = ctx.get_aou(org_unit.parent_ou);
90             WHILE porg;
91                 SET pad_depth = pad_depth + 1 IF porg.opac_visible == 't' OR ctx.is_staff;
92                 porg = ctx.get_aou(porg.parent_ou);
93             END;
94
95             pad_depth = pad_depth * 2;
96             display_name = loc_grp ? loc_grp.name : org_unit.name %]
97
98             <option value='[% node_value %]' [% selected %] [% disabled %] [% css_class %]> 
99                 [% '&nbsp;' FOR [0..pad_depth]; display_name | html %]
100             </option> 
101
102         [% END %]
103     </select>
104 [% END %]