3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2002 Paul Poulain
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>.
27 use C4
::Form
::MessagingPreferences
;
31 use Koha
::Patron
::Categories
;
35 my $searchfield = $input->param('description') // q
||;
36 my $categorycode = $input->param('categorycode');
37 my $op = $input->param('op') // 'list';
40 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
42 template_name
=> "admin/categories.tt",
46 flagsrequired
=> { parameters
=> 'manage_patron_categories' },
51 if ( $op eq 'add_form' ) {
52 my ( $category, $selected_branches );
54 $category = Koha
::Patron
::Categories
->find($categorycode);
55 $selected_branches = $category->branch_limitations;
58 my $branches = Koha
::Libraries
->search( {}, { order_by
=> ['branchname'] } )->unblessed;
60 foreach my $branch ( @
$branches ) {
61 my $selected = ( grep { $_ eq $branch->{branchcode
} } @
$selected_branches ) ?
1 : 0;
63 { branchcode
=> $branch->{branchcode
},
64 branchname
=> $branch->{branchname
},
65 selected
=> $selected,
70 category
=> $category,
71 branches_loop
=> \
@branches_loop,
74 if ( C4
::Context
->preference('EnhancedMessagingPreferences') ) {
75 C4
::Form
::MessagingPreferences
::set_form_values
(
76 { categorycode
=> $categorycode }, $template );
79 elsif ( $op eq 'add_validate' ) {
81 my $categorycode = $input->param('categorycode');
82 my $description = $input->param('description');
83 my $enrolmentperiod = $input->param('enrolmentperiod');
84 my $enrolmentperioddate = $input->param('enrolmentperioddate') || undef;
85 my $upperagelimit = $input->param('upperagelimit');
86 my $dateofbirthrequired = $input->param('dateofbirthrequired');
87 my $enrolmentfee = $input->param('enrolmentfee');
88 my $reservefee = $input->param('reservefee');
89 my $hidelostitems = $input->param('hidelostitems');
90 my $overduenoticerequired = $input->param('overduenoticerequired');
91 my $category_type = $input->param('category_type');
92 my $BlockExpiredPatronOpacActions = $input->param('BlockExpiredPatronOpacActions');
93 my $checkPrevCheckout = $input->param('checkprevcheckout');
94 my $default_privacy = $input->param('default_privacy');
95 my $reset_password = $input->param('reset_password');
96 my $change_password = $input->param('change_password');
97 my @branches = grep { $_ ne q{} } $input->multi_param('branches');
99 $reset_password = undef if $reset_password eq -1;
100 $change_password = undef if $change_password eq -1;
102 my $is_a_modif = $input->param("is_a_modif");
104 if ($enrolmentperioddate) {
105 $enrolmentperioddate = output_pref
(
107 dt
=> dt_from_string
($enrolmentperioddate),
115 my $category = Koha
::Patron
::Categories
->find( $categorycode );
116 $category->categorycode($categorycode);
117 $category->description($description);
118 $category->enrolmentperiod($enrolmentperiod);
119 $category->enrolmentperioddate($enrolmentperioddate);
120 $category->upperagelimit($upperagelimit);
121 $category->dateofbirthrequired($dateofbirthrequired);
122 $category->enrolmentfee($enrolmentfee);
123 $category->reservefee($reservefee);
124 $category->hidelostitems($hidelostitems);
125 $category->overduenoticerequired($overduenoticerequired);
126 $category->category_type($category_type);
127 $category->BlockExpiredPatronOpacActions($BlockExpiredPatronOpacActions);
128 $category->checkprevcheckout($checkPrevCheckout);
129 $category->default_privacy($default_privacy);
130 $category->reset_password($reset_password);
131 $category->change_password($change_password);
134 $category->replace_branch_limitations( \
@branches );
137 push @messages, {type
=> 'error', code
=> 'error_on_update' };
139 push @messages, { type
=> 'message', code
=> 'success_on_update' };
143 my $category = Koha
::Patron
::Category
->new({
144 categorycode
=> $categorycode,
145 description
=> $description,
146 enrolmentperiod
=> $enrolmentperiod,
147 enrolmentperioddate
=> $enrolmentperioddate,
148 upperagelimit
=> $upperagelimit,
149 dateofbirthrequired
=> $dateofbirthrequired,
150 enrolmentfee
=> $enrolmentfee,
151 reservefee
=> $reservefee,
152 hidelostitems
=> $hidelostitems,
153 overduenoticerequired
=> $overduenoticerequired,
154 category_type
=> $category_type,
155 BlockExpiredPatronOpacActions
=> $BlockExpiredPatronOpacActions,
156 checkprevcheckout
=> $checkPrevCheckout,
157 default_privacy
=> $default_privacy,
158 reset_password
=> $reset_password,
159 change_password
=> $change_password,
163 $category->replace_branch_limitations( \
@branches );
167 push @messages, { type
=> 'error', code
=> 'error_on_insert' };
169 push @messages, { type
=> 'message', code
=> 'success_on_insert' };
173 if ( C4
::Context
->preference('EnhancedMessagingPreferences') ) {
174 C4
::Form
::MessagingPreferences
::handle_form_action
( $input,
175 { categorycode
=> scalar $input->param('categorycode') }, $template );
181 elsif ( $op eq 'delete_confirm' ) {
183 my $count = Koha
::Patrons
->search({
184 categorycode
=> $categorycode
187 my $category = Koha
::Patron
::Categories
->find($categorycode);
190 category
=> $category,
191 patrons_in_category
=> $count,
195 elsif ( $op eq 'delete_confirmed' ) {
196 my $categorycode = uc( $input->param('categorycode') );
198 my $category = Koha
::Patron
::Categories
->find( $categorycode );
199 my $deleted = eval { $category->delete; };
201 if ( $@
or not $deleted ) {
202 push @messages, {type
=> 'error', code
=> 'error_on_delete' };
204 push @messages, { type
=> 'message', code
=> 'success_on_delete' };
210 if ( $op eq 'list' ) {
211 my $categories = Koha
::Patron
::Categories
->search(
213 description
=> { -like
=> "$searchfield%" }
216 order_by
=> ['category_type', 'description', 'categorycode' ]
221 categories
=> $categories,
226 categorycode
=> $categorycode,
227 searchfield
=> $searchfield,
228 messages
=> \
@messages,
232 output_html_with_http_headers
$input, $cookie, $template->output;