updates to acqui - first of several commits
[koha.git] / tools / overduerules.pl
blobf63f58101699924ac0d97539bd3081ac1fac26c1
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
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.
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.
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
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;
29 my $input = new CGI;
30 my $dbh = C4::Context->dbh;
32 my $type=$input->param('type');
33 my $branch = $input->param('branch');
34 $branch="" unless $branch;
35 my $op = $input->param('op');
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;
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=?");
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));
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
80 ($temphash{$bor}->{delay3}<=$temphash{$bor}->{delay2} 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;
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
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)
120 unless ($err) {$template->param(datasaved=>1);}
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'},
130 push @branchloop, \%row;
133 my $letters = GetLetters("circulation");
135 my $countletters = scalar $letters;
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;
148 my %row = ( overduename => $data->{'categorycode'},
149 toggle => $toggle,
150 line => $data->{'description'}
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},
164 push @letterloop, \%letterrow;
166 $row{"letterloop$i"}=\@letterloop;
167 } else {
168 $row{"noletter"}=1;
169 $row{"letter$i"}=$temphash{$data->{'categorycode'}}->{"letter$i"};
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},
186 push @letterloop, \%letterrow;
188 $row{"letterloop$i"}=\@letterloop;
189 } else {
190 $row{"noletter"}=1;
191 if ($dat->{"letter$i"}){$row{"letter$i"}=$dat->{"letter$i"};}
193 if ($dat->{"delay$i"}){$row{"delay$i"}=$dat->{"delay$i"};}
194 if ($dat->{"debarred$i"}){$row{"debarred$i"}=$dat->{"debarred$i"};}
196 $sth2->finish;
198 push @line_loop,\%row;
200 $sth->finish;
202 $template->param(table=> \@line_loop,
203 branchloop => \@branchloop,
204 branch => $branch);
205 output_html_with_http_headers $input, $cookie, $template->output;