Bug 26265: (QA follow-up) Remove g option from regex, add few dirs
[koha.git] / admin / check_parent_total.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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21 use CGI qw ( -utf8 );
22 use C4::Context;
23 use C4::Output;
24 use C4::Auth;
25 use C4::Budgets;
26
27 =head1 DESCRIPTION
28
29 This script checks the amount unallocated from the new parent budget , or the period - if no parent_id is given
30
31 This script is called from aqbudgets.pl during an 'add' or 'mod' budget, from the JSscript Check() function, 
32 to determine whether the new parent budget (or period) has enough unallocated funds for the save to complete.
33
34 =cut
35
36 my $dbh = C4::Context->dbh;
37 my $input = new CGI;
38
39 my $total     = $input->param('total');
40 my $budget_id = $input->param('budget_id');
41 my $parent_id = $input->param('parent_id');
42 my $period_id = $input->param('period_id');
43 my $returncode;
44
45 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
46     {   template_name   => "acqui/ajax.tt",
47         query           => $input,
48         type            => "intranet",
49         authnotrequired => 0,
50         debug           => 0,
51     }
52 );
53 my ($period, $parent , $budget);
54 $period = GetBudgetPeriod($period_id) if $period_id;
55 $parent = GetBudget($parent_id)       if defined $parent_id;
56 $budget = GetBudget($budget_id)       if defined $budget_id;
57
58 # CHECK THE PARENT BUDGET FOR ENOUGHT AMOUNT UNALLOCATED,  IF NOT THEN RETURN 1
59 my ($sub_unalloc , $period_sum, $budget_period_unalloc);
60
61 if ($parent) {
62     my $query = "  SELECT SUM(budget_amount) as sum FROM aqbudgets where budget_parent_id = ? ";
63     my @sql_params;
64     my $sth   = $dbh->prepare($query);
65     $sth->execute( $parent->{'budget_id'} );
66     my $sum = $sth->fetchrow_hashref;
67     $sth->finish;
68     $sub_unalloc = $parent->{'budget_amount'} - $sum->{sum};
69 #    TRICKY.. , IF THE PARENT IS THE CURRENT PARENT  - THEN SUBTRACT CURRENT BUDGET FROM TOTAL
70     $sub_unalloc           += $budget->{'budget_amount'} if ( $budget->{'budget_parent_id'} == $parent_id ) ;
71 }
72
73 # ELSE , IF NO PARENT PASSED, THEN CHECK UNALLOCATED FOR PERIOD, IF NOT THEN RETURN 2
74 else {
75     my $query = qq| SELECT SUM(budget_amount) as sum
76                 FROM aqbudgets WHERE budget_period_id = ? and budget_parent_id IS NULL |;
77     my @sql_params;
78     push @sql_params, $period_id;
79     if ($budget_id){
80         $query.=qq| and budget_id <> ? |;
81         push @sql_params,$budget_id;
82     }
83
84     my $sth = $dbh->prepare($query);
85     $sth->execute(@sql_params);
86     $period_sum = $sth->fetchrow_hashref;
87     $sth->finish;
88     $budget_period_unalloc = $period->{'budget_period_total'} - $period_sum->{'sum'} if $period->{'budget_period_total'};
89 }
90
91 # FIXME - we really need a better way to do this consistently
92 # and across the board, be it bigints, Math::FixedPoint, a
93 # modernized version of Math::Curency that isn't tied to the system
94 # locale, or something else.
95 $total                 = sprintf( "%.2f", $total );
96 $sub_unalloc           = sprintf( "%.2f", $sub_unalloc );
97 $budget_period_unalloc = sprintf( "%.2f", $budget_period_unalloc );
98
99 if ( $parent_id) {
100     if ( ($total > $sub_unalloc ) && $sub_unalloc )  {
101         $returncode = 1;
102     }
103 } elsif ( ( $total > $budget_period_unalloc ) && $budget_period_unalloc ) {
104     $returncode = 2;
105
106 } else {
107     $returncode = 0;
108 }
109
110
111 output_html_with_http_headers $input, $cookie, $returncode;
112 1;