Bug 19074: Fix category display in Batch patron modification.
[koha.git] / admin / categories.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2002 Paul Poulain
5 #
6 # This file is part of Koha.
7 #
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.
12 #
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.
17 #
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>.
20
21 use Modern::Perl;
22
23 use CGI qw ( -utf8 );
24 use C4::Context;
25 use C4::Auth;
26 use C4::Output;
27 use C4::Form::MessagingPreferences;
28 use Koha::Patrons;
29 use Koha::Database;
30 use Koha::DateUtils;
31 use Koha::Patron::Categories;
32 use Koha::Libraries;
33
34 my $input         = new CGI;
35 my $searchfield   = $input->param('description') // q||;
36 my $categorycode  = $input->param('categorycode');
37 my $op            = $input->param('op') // 'list';
38 my @messages;
39
40 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
41     {
42         template_name   => "admin/categories.tt",
43         query           => $input,
44         type            => "intranet",
45         authnotrequired => 0,
46         flagsrequired   => { parameters => 'parameters_remaining_permissions' },
47         debug           => 1,
48     }
49 );
50
51 if ( $op eq 'add_form' ) {
52     my ( $category, $selected_branches );
53     if ($categorycode) {
54         $category          = Koha::Patron::Categories->find($categorycode);
55         $selected_branches = $category->branch_limitations;
56     }
57
58     my $branches = Koha::Libraries->search( {}, { order_by => ['branchname'] } )->unblessed;
59     my @branches_loop;
60     foreach my $branch ( @$branches ) {
61         my $selected = ( grep { $_ eq $branch->{branchcode} } @$selected_branches ) ? 1 : 0;
62         push @branches_loop,
63           { branchcode => $branch->{branchcode},
64             branchname => $branch->{branchname},
65             selected   => $selected,
66           };
67     }
68
69     $template->param(
70         category => $category,
71         branches_loop       => \@branches_loop,
72     );
73
74     if ( C4::Context->preference('EnhancedMessagingPreferences') ) {
75         C4::Form::MessagingPreferences::set_form_values(
76             { categorycode => $categorycode }, $template );
77     }
78 }
79 elsif ( $op eq 'add_validate' ) {
80
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');
96
97     my $is_a_modif = $input->param("is_a_modif");
98
99     if ($enrolmentperioddate) {
100         $enrolmentperioddate = output_pref(
101             {
102                 dt         => dt_from_string($enrolmentperioddate),
103                 dateformat => 'iso',
104                 dateonly   => 1,
105             }
106         );
107     }
108
109     if ($is_a_modif) {
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);
125         eval {
126             $category->store;
127             $category->replace_branch_limitations( \@branches );
128         };
129         if ( $@ ) {
130             push @messages, {type => 'error', code => 'error_on_update' };
131         } else {
132             push @messages, { type => 'message', code => 'success_on_update' };
133         }
134     }
135     else {
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,
151         });
152         eval {
153             $category->store;
154             $category->replace_branch_limitations( \@branches );
155         };
156
157         if ( $@ ) {
158             push @messages, { type => 'error', code => 'error_on_insert' };
159         } else {
160             push @messages, { type => 'message', code => 'success_on_insert' };
161         }
162     }
163
164     if ( C4::Context->preference('EnhancedMessagingPreferences') ) {
165         C4::Form::MessagingPreferences::handle_form_action( $input,
166             { categorycode => scalar $input->param('categorycode') }, $template );
167     }
168
169     $searchfield = q||;
170     $op = 'list';
171 }
172 elsif ( $op eq 'delete_confirm' ) {
173
174     my $count = Koha::Patrons->search({
175         categorycode => $categorycode
176     })->count;
177
178     my $category = Koha::Patron::Categories->find($categorycode);
179
180     $template->param(
181         category => $category,
182         patrons_in_category => $count,
183     );
184
185 }
186 elsif ( $op eq 'delete_confirmed' ) {
187     my $categorycode = uc( $input->param('categorycode') );
188
189     my $category = Koha::Patron::Categories->find( $categorycode );
190     my $deleted = eval { $category->delete; };
191
192     if ( $@ or not $deleted ) {
193         push @messages, {type => 'error', code => 'error_on_delete' };
194     } else {
195         push @messages, { type => 'message', code => 'success_on_delete' };
196     }
197
198     $op = 'list';
199 }
200
201 if ( $op eq 'list' ) {
202     my $categories = Koha::Patron::Categories->search(
203         {
204             description => { -like => "$searchfield%" }
205         },
206         {
207             order_by => ['category_type', 'description', 'categorycode' ]
208         }
209     );
210
211     $template->param(
212         categories => $categories,
213     )
214 }
215
216 $template->param(
217     categorycode => $categorycode,
218     searchfield  => $searchfield,
219     messages     => \@messages,
220     op => $op,
221 );
222
223 output_html_with_http_headers $input, $cookie, $template->output;
224
225 exit 0;