Bug 16034 - DBRev 16.12.00.010
[koha.git] / admin / patron-attr-types.pl
blob74e075c2f3dd15e5e047eae307ef95ab64df600a
1 #! /usr/bin/perl
3 # Copyright 2008 LibLime
4 # Parts copyright 2010 BibLibre
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 use Modern::Perl;
24 use CGI qw ( -utf8 );
25 use List::MoreUtils qw/uniq/;
27 use C4::Auth;
28 use C4::Context;
29 use C4::Output;
30 use C4::Koha;
31 use C4::Members::AttributeTypes;
33 use Koha::AuthorisedValues;
34 use Koha::Libraries;
35 use Koha::Patron::Categories;
37 my $script_name = "/cgi-bin/koha/admin/patron-attr-types.pl";
39 our $input = new CGI;
40 my $op = $input->param('op') || '';
43 our ($template, $loggedinuser, $cookie)
44 = get_template_and_user({template_name => "admin/patron-attr-types.tt",
45 query => $input,
46 type => "intranet",
47 authnotrequired => 0,
48 flagsrequired => {parameters => 'parameters_remaining_permissions'},
49 debug => 1,
50 });
52 $template->param(script_name => $script_name);
54 my $code = $input->param("code");
56 my $display_list = 0;
57 if ($op eq "edit_attribute_type") {
58 edit_attribute_type_form($template, $code);
59 } elsif ($op eq "edit_attribute_type_confirmed") {
60 $display_list = add_update_attribute_type('edit', $template, $code);
61 } elsif ($op eq "add_attribute_type") {
62 add_attribute_type_form($template);
63 } elsif ($op eq "add_attribute_type_confirmed") {
64 $display_list = add_update_attribute_type('add', $template, $code);
65 } elsif ($op eq "delete_attribute_type") {
66 $display_list = delete_attribute_type_form($template, $code);
67 } elsif ($op eq "delete_attribute_type_confirmed") {
68 delete_attribute_type($template, $code);
69 $display_list = 1;
70 } else {
71 $display_list = 1;
74 if ($display_list) {
75 unless (C4::Context->preference('ExtendedPatronAttributes')) {
76 $template->param(WARNING_extended_attributes_off => 1);
78 patron_attribute_type_list($template);
81 output_html_with_http_headers $input, $cookie, $template->output;
83 exit 0;
85 sub add_attribute_type_form {
86 my $template = shift;
88 my $branches = Koha::Libraries->search( {}, { order_by => ['branchname'] } )->unblessed;
89 my @branches_loop;
90 foreach my $branch (@$branches) {
91 push @branches_loop, {
92 branchcode => $branch->{branchcode},
93 branchname => $branch->{branchname},
97 my $patron_categories = Koha::Patron::Categories->search_limited({}, {order_by => ['description']});
98 $template->param(
99 attribute_type_form => 1,
100 confirm_op => 'add_attribute_type_confirmed',
101 categories => $patron_categories,
102 branches_loop => \@branches_loop,
104 $template->param(classes_val_loop => GetAuthorisedValues( 'PA_CLASS'));
107 sub error_add_attribute_type_form {
108 my $template = shift;
110 $template->param(description => scalar $input->param('description'));
112 if ($input->param('repeatable')) {
113 $template->param(repeatable_checked => 1);
115 if ($input->param('unique_id')) {
116 $template->param(unique_id_checked => 1);
118 if ($input->param('opac_display')) {
119 $template->param(opac_display_checked => 1);
121 if ($input->param('staff_searchable')) {
122 $template->param(staff_searchable_checked => 1);
124 if ($input->param('display_checkout')) {
125 $template->param(display_checkout_checked => 'checked="checked"');
128 $template->param( category_code => scalar $input->param('category_code') );
129 $template->param( class => scalar $input->param('class') );
131 $template->param(
132 attribute_type_form => 1,
133 confirm_op => 'add_attribute_type_confirmed',
134 authorised_value_category => $input->param('authorised_value_category'),
138 sub add_update_attribute_type {
139 my $op = shift;
140 my $template = shift;
141 my $code = shift;
143 my $description = $input->param('description');
145 my $attr_type;
146 if ($op eq 'edit') {
147 $attr_type = C4::Members::AttributeTypes->fetch($code);
148 $attr_type->description($description);
149 } else {
150 my $existing = C4::Members::AttributeTypes->fetch($code);
151 if (defined($existing)) {
152 $template->param(duplicate_code_error => $code);
153 error_add_attribute_type_form($template);
154 return 0;
156 $attr_type = C4::Members::AttributeTypes->new($code, $description);
157 my $repeatable = $input->param('repeatable');
158 $attr_type->repeatable($repeatable);
159 my $unique_id = $input->param('unique_id');
160 $attr_type->unique_id($unique_id);
163 my $opac_display = $input->param('opac_display');
164 $attr_type->opac_display($opac_display);
165 my $staff_searchable = $input->param('staff_searchable');
166 $attr_type->staff_searchable($staff_searchable);
167 my $authorised_value_category = $input->param('authorised_value_category');
168 $attr_type->authorised_value_category($authorised_value_category);
169 my $display_checkout = $input->param('display_checkout');
170 $attr_type->display_checkout($display_checkout);
171 $attr_type->category_code(scalar $input->param('category_code'));
172 $attr_type->class(scalar $input->param('class'));
173 my @branches = $input->multi_param('branches');
174 $attr_type->branches( \@branches );
176 if ($op eq 'edit') {
177 $template->param(edited_attribute_type => $attr_type->code());
178 } else {
179 $template->param(added_attribute_type => $attr_type->code());
181 $attr_type->store();
183 return 1;
186 sub delete_attribute_type_form {
187 my $template = shift;
188 my $code = shift;
190 my $attr_type = C4::Members::AttributeTypes->fetch($code);
191 my $display_list = 0;
192 if (defined($attr_type)) {
193 $template->param(
194 delete_attribute_type_form => 1,
195 confirm_op => "delete_attribute_type_confirmed",
196 code => $code,
197 description => $attr_type->description(),
199 } else {
200 $template->param(ERROR_delete_not_found => $code);
201 $display_list = 1;
203 return $display_list;
206 sub delete_attribute_type {
207 my $template = shift;
208 my $code = shift;
210 my $attr_type = C4::Members::AttributeTypes->fetch($code);
211 if (defined($attr_type)) {
212 if ($attr_type->num_patrons() > 0) {
213 $template->param(ERROR_delete_in_use => $code);
214 $template->param(ERROR_num_patrons => $attr_type->num_patrons());
215 } else {
216 $attr_type->delete();
217 $template->param(deleted_attribute_type => $code);
219 } else {
220 $template->param(ERROR_delete_not_found => $code);
224 sub edit_attribute_type_form {
225 my $template = shift;
226 my $code = shift;
228 my $attr_type = C4::Members::AttributeTypes->fetch($code);
230 $template->param(code => $code);
231 $template->param(description => $attr_type->description());
232 $template->param(class => $attr_type->class());
234 if ($attr_type->repeatable()) {
235 $template->param(repeatable_checked => 1);
237 $template->param(repeatable_disabled => 1);
238 if ($attr_type->unique_id()) {
239 $template->param(unique_id_checked => 1);
241 $template->param(unique_id_disabled => 1);
242 if ($attr_type->opac_display()) {
243 $template->param(opac_display_checked => 1);
245 if ($attr_type->staff_searchable()) {
246 $template->param(staff_searchable_checked => 1);
248 if ($attr_type->display_checkout()) {
249 $template->param(display_checkout_checked => 'checked="checked"');
251 $template->param( authorised_value_category => $attr_type->authorised_value_category() );
252 $template->param(classes_val_loop => GetAuthorisedValues( 'PA_CLASS' ));
254 my $branches = Koha::Libraries->search( {}, { order_by => ['branchname'] } )->unblessed;
255 my @branches_loop;
256 my $selected_branches = $attr_type->branches;
257 foreach my $branch (@$branches) {
258 my $selected = ( grep {$_->{branchcode} eq $branch->{branchcode}} @$selected_branches ) ? 1 : 0;
259 push @branches_loop, {
260 branchcode => $branch->{branchcode},
261 branchname => $branch->{branchname},
262 selected => $selected,
265 $template->param( branches_loop => \@branches_loop );
267 $template->param(
268 category_code => $attr_type->category_code,
269 category_class => $attr_type->class,
270 category_description => $attr_type->category_description,
273 my $patron_categories = Koha::Patron::Categories->search({}, {order_by => ['description']});
274 $template->param(
275 attribute_type_form => 1,
276 edit_attribute_type => 1,
277 confirm_op => 'edit_attribute_type_confirmed',
278 categories => $patron_categories,
283 sub patron_attribute_type_list {
284 my $template = shift;
286 my @attr_types = C4::Members::AttributeTypes::GetAttributeTypes( 1, 1 );
288 my @classes = uniq( map { $_->{class} } @attr_types );
289 @classes = sort @classes;
291 my @attributes_loop;
292 for my $class (@classes) {
293 my ( @items, $branches );
294 for my $attr (@attr_types) {
295 next if $attr->{class} ne $class;
296 my $attr_type = C4::Members::AttributeTypes->fetch($attr->{code});
297 $attr->{branches} = $attr_type->branches;
298 push @items, $attr;
300 my $av = Koha::AuthorisedValues->search({ category => 'PA_CLASS', authorised_value => $class });
301 my $lib = $av->count ? $av->next->lib : $class;
302 push @attributes_loop, {
303 class => $class,
304 items => \@items,
305 lib => $lib,
306 branches => $branches,
309 $template->param(available_attribute_types => \@attributes_loop);
310 $template->param(display_list => 1);