Continuing to add tests
[koha.git] / tools / overduerules.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use strict;
21 use CGI;
22 use C4::Context;
23 use C4::Output;
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Branch; # GetBranches
27 use C4::Letters;
28
29 my $input = new CGI;
30 my $dbh = C4::Context->dbh;
31
32 my $type=$input->param('type');
33 my $branch = $input->param('branch');
34 $branch="" unless $branch;
35 my $op = $input->param('op');
36
37 # my $flagsrequired;
38 # $flagsrequired->{circulation}=1;
39 my ($template, $loggedinuser, $cookie)
40     = get_template_and_user({template_name => "tools/overduerules.tmpl",
41                              query => $input,
42                              type => "intranet",
43                              authnotrequired => 0,
44                              flagsrequired => {parameters => 1, tools => 1},
45                               debug => 1,
46                              });
47 my $err=0;
48
49 # save the values entered into tables
50 my %temphash;
51 if ($op eq 'save') {
52         my @names=$input->param();
53         my $sth_search = $dbh->prepare("select count(*) as total from overduerules where branchcode=? and categorycode=?");
54
55         my $sth_insert = $dbh->prepare("insert into overduerules (branchcode,categorycode, delay1,letter1,debarred1, delay2,letter2,debarred2, delay3,letter3,debarred3) values (?,?,?,?,?,?,?,?,?,?,?)");
56         my $sth_update=$dbh->prepare("Update overduerules set delay1=?, letter1=?, debarred1=?, delay2=?, letter2=?, debarred2=?, delay3=?, letter3=?, debarred3=? where branchcode=? and categorycode=?");
57         my $sth_delete=$dbh->prepare("delete from overduerules where branchcode=? and categorycode=?");
58         foreach my $key (@names){
59                 # ISSUES
60                 if ($key =~ /(.*)([1-3])-(.*)/) {
61                         my $type = $1; # data type
62                         my $num = $2; # From 1 to 3
63                         my $bor = $3; # borrower category
64                         $temphash{$bor}->{"$type$num"}=$input->param("$key") if (($input->param("$key") ne "") or ($input->param("$key")>0));
65                 }
66         }
67         foreach my $bor (keys %temphash){
68                 # Do some Checking here : delay1 < delay2 <delay3 all of them being numbers
69                 # Raise error if not true
70                 if ($temphash{$bor}->{delay1}=~/[^0-9]/ and $temphash{$bor}->{delay1} ne ""){
71                         $template->param("ERROR"=>1,"ERRORDELAY"=>"delay1","BORERR"=>$bor);
72                         $err=1;
73                 } elsif ($temphash{$bor}->{delay2}=~/[^0-9]/ and $temphash{$bor}->{delay2} ne ""){
74                         $template->param("ERROR"=>1,"ERRORDELAY"=>"delay2","BORERR"=>$bor);
75                         $err=1;
76                 } elsif ($temphash{$bor}->{delay3}=~/[^0-9]/ and $temphash{$bor}->{delay3} ne ""){
77                         $template->param("ERROR"=>1,"ERRORDELAY"=>"delay3","BORERR"=>$bor);
78                         $err=1;
79                 }elsif ($temphash{$bor}->{delay3} and ($temphash{$bor}->{delay3}<=$temphash{$bor}->{delay2}
80                         or $temphash{$bor}->{delay3}<=$temphash{$bor}->{delay1})
81                         or $temphash{$bor}->{delay2} and ($temphash{$bor}->{delay2}<=$temphash{$bor}->{delay1})){
82                                 $template->param("ERROR"=>1,"ERRORORDER"=>1,"BORERR"=>$bor);
83                                 $err=1;
84                 }
85                 unless ($err){
86                         if (($temphash{$bor}->{delay1} and ($temphash{$bor}->{"letter1"} or $temphash{$bor}->{"debarred1"}))
87                                 or ($temphash{$bor}->{delay2} and ($temphash{$bor}->{"letter2"} or $temphash{$bor}->{"debarred2"}))
88                                 or ($temphash{$bor}->{delay3} and ($temphash{$bor}->{"letter3"} or $temphash{$bor}->{"debarred3"}))) {
89                                 $sth_search->execute($branch,$bor);
90                                 my $res = $sth_search->fetchrow_hashref();
91                                 if ($res->{'total'}>0) {
92                                         $sth_update->execute(
93                                                 ($temphash{$bor}->{"delay1"}?$temphash{$bor}->{"delay1"}:0),
94                                                 ($temphash{$bor}->{"letter1"}?$temphash{$bor}->{"letter1"}:""),
95                                                 ($temphash{$bor}->{"debarred1"}?$temphash{$bor}->{"debarred1"}:0),
96                                                 ($temphash{$bor}->{"delay2"}?$temphash{$bor}->{"delay2"}:0),
97                                                 ($temphash{$bor}->{"letter2"}?$temphash{$bor}->{"letter2"}:""),
98                                                 ($temphash{$bor}->{"debarred2"}?$temphash{$bor}->{"debarred2"}:0),
99                                                 ($temphash{$bor}->{"delay3"}?$temphash{$bor}->{"delay3"}:0),
100                                                 ($temphash{$bor}->{"letter3"}?$temphash{$bor}->{"letter3"}:""),
101                                                 ($temphash{$bor}->{"debarred3"}?$temphash{$bor}->{"debarred3"}:0),
102                                                 $branch ,$bor
103                                                 );
104                                 } else {
105                                         $sth_insert->execute($branch,$bor,
106                                                 ($temphash{$bor}->{"delay1"}?$temphash{$bor}->{"delay1"}:0),
107                                                 ($temphash{$bor}->{"letter1"}?$temphash{$bor}->{"letter1"}:""),
108                                                 ($temphash{$bor}->{"debarred1"}?$temphash{$bor}->{"debarred1"}:0),
109                                                 ($temphash{$bor}->{"delay2"}?$temphash{$bor}->{"delay2"}:0),
110                                                 ($temphash{$bor}->{"letter2"}?$temphash{$bor}->{"letter2"}:""),
111                                                 ($temphash{$bor}->{"debarred2"}?$temphash{$bor}->{"debarred2"}:0),
112                                                 ($temphash{$bor}->{"delay3"}?$temphash{$bor}->{"delay3"}:0),
113                                                 ($temphash{$bor}->{"letter3"}?$temphash{$bor}->{"letter3"}:""),
114                                                 ($temphash{$bor}->{"debarred3"}?$temphash{$bor}->{"debarred3"}:0)
115                                                 );
116                                 }
117                         }
118                 }
119         }
120         unless ($err) {$template->param(datasaved=>1);}
121 }
122 my $branches = GetBranches();
123 my @branchloop;
124 foreach my $thisbranch (keys %$branches) {
125         my $selected = 1 if $thisbranch eq $branch;
126         my %row =(value => $thisbranch,
127                                 selected => $selected,
128                                 branchname => $branches->{$thisbranch}->{'branchname'},
129                         );
130         push @branchloop, \%row;
131 }
132
133 my $letters = GetLetters("circulation");
134
135 my $countletters = scalar $letters;
136
137 my $sth=$dbh->prepare("Select description,categorycode from categories where overduenoticerequired>0 order by description");
138 $sth->execute;
139 my @line_loop;
140 my $toggle= 1;
141 # my $i=0;
142 while (my $data=$sth->fetchrow_hashref){
143         if ( $toggle eq 1 ) {
144                 $toggle = 0;
145         } else {
146                 $toggle = 1;
147         }
148         my %row = ( overduename => $data->{'categorycode'},
149                                 toggle => $toggle,
150                                 line => $data->{'description'}
151                                 );
152         if (%temphash){
153                 for (my $i=1;$i<=3;$i++){
154                         $row{"delay$i"}=$temphash{$data->{'categorycode'}}->{"delay$i"};
155                         $row{"debarred$i"}=$temphash{$data->{'categorycode'}}->{"debarred$i"};
156                         if ($countletters){
157                                 my @letterloop;
158                                 foreach my $thisletter (keys %$letters) {
159                                         my $selected = 1 if $thisletter eq $temphash{$data->{'categorycode'}}->{"letter$i"};
160                                         my %letterrow =(value => $thisletter,
161                                                                 selected => $selected,
162                                                                 lettername => $letters->{$thisletter},
163                                                         );
164                                         push @letterloop, \%letterrow;
165                                 }
166                                 $row{"letterloop$i"}=\@letterloop;
167                         } else {
168                                 $row{"noletter"}=1;
169                                 $row{"letter$i"}=$temphash{$data->{'categorycode'}}->{"letter$i"};
170                         }
171                 }
172         } else {
173         #getting values from table
174                 my $sth2=$dbh->prepare("SELECT * from overduerules WHERE branchcode=? and categorycode=?");
175                 $sth2->execute($branch,$data->{'categorycode'});
176                 my $dat=$sth2->fetchrow_hashref;
177                 for (my $i=1;$i<=3;$i++){
178                         if ($countletters){
179                                 my @letterloop;
180                                 foreach my $thisletter (keys %$letters) {
181                                         my $selected = 1 if $thisletter eq $dat->{"letter$i"};
182                                         my %letterrow =(value => $thisletter,
183                                                                 selected => $selected,
184                                                                 lettername => $letters->{$thisletter},
185                                                         );
186                                         push @letterloop, \%letterrow;
187                                 }
188                                 $row{"letterloop$i"}=\@letterloop;
189                         } else {
190                                 $row{"noletter"}=1;
191                                 if ($dat->{"letter$i"}){$row{"letter$i"}=$dat->{"letter$i"};}
192                         }
193                         if ($dat->{"delay$i"}){$row{"delay$i"}=$dat->{"delay$i"};}
194                         if ($dat->{"debarred$i"}){$row{"debarred$i"}=$dat->{"debarred$i"};}
195                 }
196                 $sth2->finish;
197         }
198         push @line_loop,\%row;
199 }
200 $sth->finish;
201
202 $template->param(table=> \@line_loop,
203                                                 branchloop => \@branchloop,
204                                                 branch => $branch);
205 output_html_with_http_headers $input, $cookie, $template->output;