bug_5911: Transport Cost Matrix
[koha.git] / admin / categorie.pl
1 #!/usr/bin/perl
2
3 #script to administer the categories table
4 #written 20/02/2002 by paul.poulain@free.fr
5
6 # ALGO :
7 # this script use an $op to know what to do.
8 # if $op is empty or none of the above values,
9 #       - the default screen is build (with all records, or filtered datas).
10 #       - the   user can clic on add, modify or delete record.
11 # if $op=add_form
12 #       - if primkey exists, this is a modification,so we read the $primkey record
13 #       - builds the add/modify form
14 # if $op=add_validate
15 #       - the user has just send datas, so we create/modify the record
16 # if $op=delete_form
17 #       - we show the record having primkey=$primkey and ask for deletion validation form
18 # if $op=delete_confirm
19 #       - we delete the record having primkey=$primkey
20
21
22 # Copyright 2000-2002 Katipo Communications
23 #
24 # This file is part of Koha.
25 #
26 # Koha is free software; you can redistribute it and/or modify it under the
27 # terms of the GNU General Public License as published by the Free Software
28 # Foundation; either version 2 of the License, or (at your option) any later
29 # version.
30 #
31 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
32 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
33 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
34 #
35 # You should have received a copy of the GNU General Public License along
36 # with Koha; if not, write to the Free Software Foundation, Inc.,
37 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
38
39 use strict;
40 #use warnings; FIXME - Bug 2505
41 use CGI;
42 use C4::Context;
43 use C4::Auth;
44 use C4::Output;
45 use C4::Dates;
46 use C4::Form::MessagingPreferences;
47
48 sub StringSearch  {
49         my ($searchstring,$type)=@_;
50         my $dbh = C4::Context->dbh;
51         $searchstring=~ s/\'/\\\'/g;
52         my @data=split(' ',$searchstring);
53         my $count=@data;
54         my $sth=$dbh->prepare("Select * from categories where (description like ?) order by category_type,description,categorycode");
55         $sth->execute("$data[0]%");
56         my @results;
57         while (my $data=$sth->fetchrow_hashref){
58         push(@results,$data);
59         }
60         #  $sth->execute;
61         $sth->finish;
62         return (scalar(@results),\@results);
63 }
64
65 my $input = new CGI;
66 my $searchfield=$input->param('description');
67 my $script_name="/cgi-bin/koha/admin/categorie.pl";
68 my $categorycode=$input->param('categorycode');
69 my $op = $input->param('op');
70
71 my ($template, $loggedinuser, $cookie)
72     = get_template_and_user({template_name => "admin/categorie.tmpl",
73                              query => $input,
74                              type => "intranet",
75                              authnotrequired => 0,
76                  flagsrequired => {parameters => 'parameters_remaining_permissions'},
77                              debug => 1,
78                              });
79
80
81 $template->param(script_name => $script_name,
82                  categorycode => $categorycode,
83                  searchfield => $searchfield);
84
85
86 ################## ADD_FORM ##################################
87 # called by default. Used to create form to add or  modify a record
88 if ($op eq 'add_form') {
89         $template->param(add_form => 1);
90         
91         #---- if primkey exists, it's a modify action, so read values to modify...
92         my $data;
93         if ($categorycode) {
94                 my $dbh = C4::Context->dbh;
95                 my $sth=$dbh->prepare("select categorycode,description,enrolmentperiod,enrolmentperioddate,upperagelimit,dateofbirthrequired,enrolmentfee,issuelimit,reservefee,hidelostitems,overduenoticerequired,category_type from categories where categorycode=?");
96                 $sth->execute($categorycode);
97                 $data=$sth->fetchrow_hashref;
98                 $sth->finish;
99         }
100
101     $data->{'enrolmentperioddate'} = undef if ($data->{'enrolmentperioddate'} eq '0000-00-00');
102
103         $template->param(description        => $data->{'description'},
104                                 enrolmentperiod         => $data->{'enrolmentperiod'},
105                                 enrolmentperioddate     => C4::Dates::format_date($data->{'enrolmentperioddate'}),
106                                 upperagelimit           => $data->{'upperagelimit'},
107                                 dateofbirthrequired     => $data->{'dateofbirthrequired'},
108                                 enrolmentfee            => sprintf("%.2f",$data->{'enrolmentfee'}),
109                                 overduenoticerequired   => $data->{'overduenoticerequired'},
110                                 issuelimit              => $data->{'issuelimit'},
111                                 reservefee              => sprintf("%.2f",$data->{'reservefee'}),
112                                 hidelostitems           => $data->{'hidelostitems'},
113                                 category_type           => $data->{'category_type'},
114                                 DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
115                 SMSSendDriver => C4::Context->preference("SMSSendDriver"),
116                 TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification"),
117                                 "type_".$data->{'category_type'} => 1,
118                                 );
119     if (C4::Context->preference('EnhancedMessagingPreferences')) {
120         C4::Form::MessagingPreferences::set_form_values({ categorycode => $categorycode } , $template);
121     }
122                                                                                                         # END $OP eq ADD_FORM
123 ################## ADD_VALIDATE ##################################
124 # called by add_form, used to insert/modify data in DB
125 } elsif ($op eq 'add_validate') {
126         $template->param(add_validate => 1);
127         my $is_a_modif = $input->param("is_a_modif");
128         my $dbh = C4::Context->dbh;
129         if($input->param('enrolmentperioddate')){
130             $input->param('enrolmentperioddate' => C4::Dates::format_date_in_iso($input->param('enrolmentperioddate')) );
131         }
132         
133         if ($is_a_modif) {
134             my $sth=$dbh->prepare("UPDATE categories SET description=?,enrolmentperiod=?, enrolmentperioddate=?,upperagelimit=?,dateofbirthrequired=?,enrolmentfee=?,reservefee=?,hidelostitems=?,overduenoticerequired=?,category_type=? WHERE categorycode=?");
135             $sth->execute(map { $input->param($_) } ('description','enrolmentperiod','enrolmentperioddate','upperagelimit','dateofbirthrequired','enrolmentfee','reservefee','hidelostitems','overduenoticerequired','category_type','categorycode'));
136             $sth->finish;
137         } else {
138             my $sth=$dbh->prepare("INSERT INTO categories  (categorycode,description,enrolmentperiod,enrolmentperioddate,upperagelimit,dateofbirthrequired,enrolmentfee,reservefee,hidelostitems,overduenoticerequired,category_type) values (?,?,?,?,?,?,?,?,?,?,?)");
139             $sth->execute(map { $input->param($_) } ('categorycode','description','enrolmentperiod','enrolmentperioddate','upperagelimit','dateofbirthrequired','enrolmentfee','reservefee','hidelostitems','overduenoticerequired','category_type'));
140             $sth->finish;
141         }
142     if (C4::Context->preference('EnhancedMessagingPreferences')) {
143         C4::Form::MessagingPreferences::handle_form_action($input, 
144                                                            { categorycode => $input->param('categorycode') }, $template);
145     }
146         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=categorie.pl\"></html>";
147         exit;
148
149                                                                                                         # END $OP eq ADD_VALIDATE
150 ################## DELETE_CONFIRM ##################################
151 # called by default form, used to confirm deletion of data in DB
152 } elsif ($op eq 'delete_confirm') {
153         $template->param(delete_confirm => 1);
154
155         my $dbh = C4::Context->dbh;
156         my $sth=$dbh->prepare("select count(*) as total from borrowers where categorycode=?");
157         $sth->execute($categorycode);
158         my $total = $sth->fetchrow_hashref;
159         $sth->finish;
160         $template->param(total => $total->{'total'});
161         
162         my $sth2=$dbh->prepare("select categorycode,description,enrolmentperiod,enrolmentperioddate,upperagelimit,dateofbirthrequired,enrolmentfee,issuelimit,reservefee,hidelostitems,overduenoticerequired,category_type from categories where categorycode=?");
163         $sth2->execute($categorycode);
164         my $data=$sth2->fetchrow_hashref;
165         $sth2->finish;
166         if ($total->{'total'} >0) {
167                 $template->param(totalgtzero => 1);
168         }
169
170         $template->param(       description             => $data->{'description'},
171                                 enrolmentperiod         => $data->{'enrolmentperiod'},
172                                 enrolmentperioddate     => C4::Dates::format_date($data->{'enrolmentperioddate'}),
173                                 upperagelimit           => $data->{'upperagelimit'},
174                                 dateofbirthrequired     => $data->{'dateofbirthrequired'},
175                                 enrolmentfee            =>  sprintf("%.2f",$data->{'enrolmentfee'}),
176                                 overduenoticerequired   => $data->{'overduenoticerequired'},
177                                 issuelimit              => $data->{'issuelimit'},
178                                 reservefee              =>  sprintf("%.2f",$data->{'reservefee'}),
179                                 hidelostitems           => $data->{'hidelostitems'},
180                                 category_type           => $data->{'category_type'},
181                                 );
182                                                                                                         # END $OP eq DELETE_CONFIRM
183 ################## DELETE_CONFIRMED ##################################
184 # called by delete_confirm, used to effectively confirm deletion of data in DB
185 } elsif ($op eq 'delete_confirmed') {
186         $template->param(delete_confirmed => 1);
187         my $dbh = C4::Context->dbh;
188         my $categorycode=uc($input->param('categorycode'));
189         my $sth=$dbh->prepare("delete from categories where categorycode=?");
190         $sth->execute($categorycode);
191         $sth->finish;
192         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=categorie.pl\"></html>";
193         exit;
194
195                                                                                                         # END $OP eq DELETE_CONFIRMED
196 } else { # DEFAULT
197         $template->param(else => 1);
198         my @loop;
199         my ($count,$results)=StringSearch($searchfield,'web');
200         for (my $i=0; $i < $count; $i++){
201                 my %row = (
202                         categorycode            => $results->[$i]{'categorycode'},
203                                 description             => $results->[$i]{'description'},
204                                 enrolmentperiod         => $results->[$i]{'enrolmentperiod'},
205                                 enrolmentperioddate     => C4::Dates::format_date($results->[$i]{'enrolmentperioddate'}),
206                                 upperagelimit           => $results->[$i]{'upperagelimit'},
207                                 dateofbirthrequired     => $results->[$i]{'dateofbirthrequired'},
208                                 enrolmentfee            => sprintf("%.2f",$results->[$i]{'enrolmentfee'}),
209                                 overduenoticerequired   => $results->[$i]{'overduenoticerequired'},
210                                 issuelimit              => $results->[$i]{'issuelimit'},
211                                 reservefee              => sprintf("%.2f",$results->[$i]{'reservefee'}),
212                                 hidelostitems           => $results->[$i]{'hidelostitems'},
213                                 category_type           => $results->[$i]{'category_type'},
214                                 "type_".$results->[$i]{'category_type'} => 1);
215         if (C4::Context->preference('EnhancedMessagingPreferences')) {
216             my $brief_prefs = _get_brief_messaging_prefs($results->[$i]{'categorycode'});
217             $row{messaging_prefs} = $brief_prefs if @$brief_prefs;
218         }
219                 push @loop, \%row;
220         }
221         $template->param(loop => \@loop);
222         # check that I (institution) and C (child) exists. otherwise => warning to the user
223         my $dbh = C4::Context->dbh;
224         my $sth=$dbh->prepare("select category_type from categories where category_type='C'");
225         $sth->execute;
226         my ($categoryChild) = $sth->fetchrow;
227         $template->param(categoryChild => $categoryChild);
228         $sth=$dbh->prepare("select category_type from categories where category_type='I'");
229         $sth->execute;
230         my ($categoryInstitution) = $sth->fetchrow;
231         $template->param(categoryInstitution => $categoryInstitution);
232         $sth->finish;
233
234
235 } #---- END $OP eq DEFAULT
236 output_html_with_http_headers $input, $cookie, $template->output;
237
238 exit 0;
239
240 sub _get_brief_messaging_prefs {
241     my $categorycode = shift;
242     my $messaging_options = C4::Members::Messaging::GetMessagingOptions();
243     my $results = [];
244     PREF: foreach my $option ( @$messaging_options ) {
245         my $pref = C4::Members::Messaging::GetMessagingPreferences( { categorycode => $categorycode,
246                                                                     message_name       => $option->{'message_name'} } );
247         next unless  $pref->{'transports'};
248         my $brief_pref = {
249             message_attribute_id    => $option->{'message_attribute_id'},
250             message_name            => $option->{'message_name'},
251             $option->{'message_name'} => 1
252         };
253         foreach my $transport ( keys %{$pref->{'transports'}} ) {
254             push @{ $brief_pref->{'transports'} }, { transport => $transport };
255         }
256         push @$results, $brief_pref;
257     }
258     return $results;
259 }