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>.
25 use List
::MoreUtils qw
/uniq/;
31 use Koha
::Patron
::Attribute
::Types
;
33 use Koha
::AuthorisedValues
;
35 use Koha
::Patron
::Categories
;
37 my $script_name = "/cgi-bin/koha/admin/patron-attr-types.pl";
40 my $op = $input->param('op') || '';
43 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
44 { template_name
=> "admin/patron-attr-types.tt",
48 flagsrequired
=> { parameters
=> 'manage_patron_attributes' }
53 $template->param(script_name
=> $script_name);
55 my $code = $input->param("code");
58 if ($op eq "edit_attribute_type") {
59 edit_attribute_type_form
($template, $code);
60 } elsif ($op eq "edit_attribute_type_confirmed") {
61 $display_list = add_update_attribute_type
('edit', $template, $code);
62 } elsif ($op eq "add_attribute_type") {
63 add_attribute_type_form
($template);
64 } elsif ($op eq "add_attribute_type_confirmed") {
65 $display_list = add_update_attribute_type
('add', $template, $code);
66 } elsif ($op eq "delete_attribute_type") {
67 $display_list = delete_attribute_type_form
($template, $code);
68 } elsif ($op eq "delete_attribute_type_confirmed") {
69 delete_attribute_type
($template, $code);
76 unless (C4
::Context
->preference('ExtendedPatronAttributes')) {
77 $template->param(WARNING_extended_attributes_off
=> 1);
79 patron_attribute_type_list
($template);
82 output_html_with_http_headers
$input, $cookie, $template->output;
86 sub add_attribute_type_form
{
89 my $patron_categories = Koha
::Patron
::Categories
->search_limited({}, {order_by
=> ['description']});
91 attribute_type_form
=> 1,
92 confirm_op
=> 'add_attribute_type_confirmed',
93 categories
=> $patron_categories,
97 sub error_add_attribute_type_form
{
100 $template->param(description
=> scalar $input->param('description'));
101 $template->param( category_code
=> scalar $input->param('category_code') );
102 $template->param( class => scalar $input->param('class') );
105 attribute_type_form
=> 1,
106 confirm_op
=> 'add_attribute_type_confirmed',
107 authorised_value_category
=> scalar $input->param('authorised_value_category'),
111 sub add_update_attribute_type
{
113 my $template = shift;
116 my $description = $input->param('description');
117 my $repeatable = $input->param('repeatable') ?
1 : 0;
118 my $unique_id = $input->param('unique_id') ?
1 : 0;
119 my $opac_display = $input->param('opac_display') ?
1 : 0;
120 my $opac_editable = $input->param('opac_editable') ?
1 : 0;
121 my $staff_searchable = $input->param('staff_searchable') ?
1 : 0;
122 my $keep_for_pseudonymization = $input->param('keep_for_pseudonymization') ?
1 : 0;
123 my $mandatory = $input->param('mandatory') ?
1 : 0;
124 my $authorised_value_category = $input->param('authorised_value_category');
125 my $display_checkout = $input->param('display_checkout') ?
1 : 0;
126 my $category_code = $input->param('category_code') || undef;
127 my $class = $input->param('class');
129 my $attr_type = Koha
::Patron
::Attribute
::Types
->find($code);
130 if ( $op eq 'edit' ) {
131 $attr_type->description($description);
134 if ($attr_type) { # Already exists
135 $template->param( duplicate_code_error
=> $code );
137 # FIXME Regression here
138 # Form will not be refilled with entered values on error
139 error_add_attribute_type_form
($template);
142 $attr_type = Koha
::Patron
::Attribute
::Type
->new(
145 description
=> $description,
146 repeatable
=> $repeatable,
147 unique_id
=> $unique_id,
153 opac_display
=> $opac_display,
154 opac_editable
=> $opac_editable,
155 staff_searchable
=> $staff_searchable,
156 keep_for_pseudonymization
=> $keep_for_pseudonymization,
157 mandatory
=> $mandatory,
158 authorised_value_category
=> $authorised_value_category,
159 display_checkout
=> $display_checkout,
160 category_code
=> $category_code,
165 my @branches = grep { ! /^\s*$/ } $input->multi_param('branches');
166 $attr_type->library_limits( \
@branches );
168 if ( $op eq 'edit' ) {
169 $template->param( edited_attribute_type
=> $attr_type->code() );
172 $template->param( added_attribute_type
=> $attr_type->code() );
178 sub delete_attribute_type_form
{
179 my $template = shift;
182 my $attr_type = Koha
::Patron
::Attribute
::Types
->find($code);
183 my $display_list = 0;
184 if (defined($attr_type)) {
186 delete_attribute_type_form
=> 1,
187 confirm_op
=> "delete_attribute_type_confirmed",
189 description
=> $attr_type->description(),
192 $template->param(ERROR_delete_not_found
=> $code);
195 return $display_list;
198 sub delete_attribute_type
{
199 my $template = shift;
202 my $attr_type = Koha
::Patron
::Attribute
::Types
->find($code);
203 if (defined($attr_type)) {
204 # TODO Check must be done for previous step as well
205 if ( my $num_patrons = Koha
::Patrons
->filter_by_attribute_type($code)->count ) {
206 $template->param(ERROR_delete_in_use
=> $code);
207 $template->param(ERROR_num_patrons
=> $num_patrons );
209 $attr_type->delete();
210 $template->param(deleted_attribute_type
=> $code);
213 # FIXME Really needed?
214 $template->param(ERROR_delete_not_found
=> $code);
218 sub edit_attribute_type_form
{
219 my $template = shift;
222 my $attr_type = Koha
::Patron
::Attribute
::Types
->find($code);
223 $template->param(attribute_type
=> $attr_type);
225 my $patron_categories = Koha
::Patron
::Categories
->search({}, {order_by
=> ['description']});
227 attribute_type_form
=> 1,
228 edit_attribute_type
=> 1,
229 confirm_op
=> 'edit_attribute_type_confirmed',
230 categories
=> $patron_categories,
235 sub patron_attribute_type_list
{
236 my $template = shift;
238 my @attr_types = Koha
::Patron
::Attribute
::Types
->search->as_list;
240 my @classes = uniq
( map { $_->class } @attr_types );
241 @classes = sort @classes;
244 # FIXME This is not efficient and should be improved
245 for my $class (@classes) {
247 for my $attr (@attr_types) {
248 next if $attr->class ne $class;
251 my $av = Koha
::AuthorisedValues
->search({ category
=> 'PA_CLASS', authorised_value
=> $class });
252 my $lib = $av->count ?
$av->next->lib : $class;
253 push @attributes_loop, {
259 $template->param(available_attribute_types
=> \
@attributes_loop);
260 $template->param(display_list
=> 1);