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>.
28 use C4
::Form
::MessagingPreferences
;
32 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
=> 'parameters_remaining_permissions' },
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 = GetBranches
;
60 foreach my $branchcode ( sort { uc( $branches->{$a}->{branchname
} ) cmp uc( $branches->{$b}->{branchname
} ) } keys %$branches ) {
61 my $selected = ( grep { $_ eq $branchcode } @
$selected_branches ) ?
1 : 0;
63 { branchcode
=> $branchcode,
64 branchname
=> $branches->{$branchcode}->{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 @branches = grep { $_ ne q{} } $input->multi_param('branches');
97 my $is_a_modif = $input->param("is_a_modif");
99 if ($enrolmentperioddate) {
100 $enrolmentperioddate = output_pref
(
102 dt
=> dt_from_string
($enrolmentperioddate),
110 my $category = Koha
::Patron
::Categories
->find( $categorycode );
111 $category->categorycode($categorycode);
112 $category->description($description);
113 $category->enrolmentperiod($enrolmentperiod);
114 $category->enrolmentperioddate($enrolmentperioddate);
115 $category->upperagelimit($upperagelimit);
116 $category->dateofbirthrequired($dateofbirthrequired);
117 $category->enrolmentfee($enrolmentfee);
118 $category->reservefee($reservefee);
119 $category->hidelostitems($hidelostitems);
120 $category->overduenoticerequired($overduenoticerequired);
121 $category->category_type($category_type);
122 $category->BlockExpiredPatronOpacActions($BlockExpiredPatronOpacActions);
123 $category->checkprevcheckout($checkPrevCheckout);
124 $category->default_privacy($default_privacy);
127 $category->replace_branch_limitations( \
@branches );
130 push @messages, {type
=> 'error', code
=> 'error_on_update' };
132 push @messages, { type
=> 'message', code
=> 'success_on_update' };
136 my $category = Koha
::Patron
::Category
->new({
137 categorycode
=> $categorycode,
138 description
=> $description,
139 enrolmentperiod
=> $enrolmentperiod,
140 enrolmentperioddate
=> $enrolmentperioddate,
141 upperagelimit
=> $upperagelimit,
142 dateofbirthrequired
=> $dateofbirthrequired,
143 enrolmentfee
=> $enrolmentfee,
144 reservefee
=> $reservefee,
145 hidelostitems
=> $hidelostitems,
146 overduenoticerequired
=> $overduenoticerequired,
147 category_type
=> $category_type,
148 BlockExpiredPatronOpacActions
=> $BlockExpiredPatronOpacActions,
149 checkprevcheckout
=> $checkPrevCheckout,
150 default_privacy
=> $default_privacy,
154 $category->replace_branch_limitations( \
@branches );
158 push @messages, { type
=> 'error', code
=> 'error_on_insert' };
160 push @messages, { type
=> 'message', code
=> 'success_on_insert' };
164 if ( C4
::Context
->preference('EnhancedMessagingPreferences') ) {
165 C4
::Form
::MessagingPreferences
::handle_form_action
( $input,
166 { categorycode
=> scalar $input->param('categorycode') }, $template );
172 elsif ( $op eq 'delete_confirm' ) {
174 my $count = Koha
::Patrons
->search({
175 categorycode
=> $categorycode
178 my $category = Koha
::Patron
::Categories
->find($categorycode);
181 category
=> $category,
182 patrons_in_category
=> $count,
186 elsif ( $op eq 'delete_confirmed' ) {
187 my $categorycode = uc( $input->param('categorycode') );
189 my $category = Koha
::Patron
::Categories
->find( $categorycode );
190 my $deleted = eval { $category->delete; };
192 if ( $@
or not $deleted ) {
193 push @messages, {type
=> 'error', code
=> 'error_on_delete' };
195 push @messages, { type
=> 'message', code
=> 'success_on_delete' };
201 if ( $op eq 'list' ) {
202 my $categories = Koha
::Patron
::Categories
->search(
204 description
=> { -like
=> "$searchfield%" }
207 order_by
=> ['category_type', 'description', 'categorycode' ]
212 categories
=> $categories,
217 categorycode
=> $categorycode,
218 searchfield
=> $searchfield,
219 messages
=> \
@messages,
223 output_html_with_http_headers
$input, $cookie, $template->output;