Bug 28591: Don't pass debug to get_template_and_user
[koha.git] / acqui / acqui-home.pl
1 #!/usr/bin/perl
2
3 # Copyright 2008 - 2009 BibLibre SARL
4 # This file is part of Koha.
5 #
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18
19 =head1 NAME
20
21 acqui-home.pl
22
23 =head1 DESCRIPTION
24
25 this script is the main page for acqui
26
27 =cut
28
29 use Modern::Perl;
30
31 use CGI qw ( -utf8 );
32 use C4::Auth;
33 use C4::Output;
34 use C4::Acquisition;
35 use C4::Budgets;
36 use C4::Members;
37 use C4::Debug;
38 use Koha::Acquisition::Currencies;
39 use Koha::Patrons;
40 use Koha::Suggestions;
41
42 my $query = CGI->new;
43 my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user(
44     {   template_name   => 'acqui/acqui-home.tt',
45         query           => $query,
46         type            => 'intranet',
47         flagsrequired   => { acquisition => '*' },
48     }
49 );
50
51 my $status           = $query->param('status') || "ASKED";
52 # Get current branch count and total viewable count, if they don't match then pass
53 # both to template
54 if( C4::Context->only_my_library ){
55     my $local_pendingsuggestions_count = Koha::Suggestions->search({ status => "ASKED", branchcode => C4::Context->userenv()->{'branch'} })->count();
56     $template->param( suggestions_count => $local_pendingsuggestions_count );
57 } else {
58     my $pendingsuggestions = Koha::Suggestions->search({ status => "ASKED" });
59     my $local_pendingsuggestions_count = $pendingsuggestions->search({ 'me.branchcode' => C4::Context->userenv()->{'branch'} })->count();
60     my $pendingsuggestions_count = $pendingsuggestions->count();
61     $template->param(
62         all_pendingsuggestions => $pendingsuggestions_count != $local_pendingsuggestions_count ? $pendingsuggestions_count : 0,
63         suggestions_count => $local_pendingsuggestions_count
64     );
65 }
66
67 my $budget_arr = GetBudgetHierarchy;
68
69 my $total      = 0;
70 my $totspent   = 0;
71 my $totordered = 0;
72 my $totcomtd   = 0;
73 my $totavail   = 0;
74
75 my $total_active        = 0;
76 my $totspent_active     = 0;
77 my $totordered_active   = 0;
78 my $totavail_active     = 0;
79
80 my @budget_loop;
81 foreach my $budget ( @{$budget_arr} ) {
82     next unless (CanUserUseBudget($loggedinuser, $budget, $userflags));
83
84     my $patron = Koha::Patrons->find( $budget->{budget_owner_id} );
85     if ( $patron ) {
86         $budget->{budget_owner} = $patron;
87     }
88
89     if ( !defined $budget->{budget_amount} ) {
90         $budget->{budget_amount} = 0;
91     }
92     if ( !defined $budget->{budget_spent} ) {
93         $budget->{budget_spent} = 0;
94     }
95     if ( !defined $budget->{budget_ordered} ) {
96         $budget->{budget_ordered} = 0;
97     }
98     $budget->{'budget_avail'} =
99       $budget->{'budget_amount'} - ( $budget->{'budget_spent'} + $budget->{'budget_ordered'} );
100
101     $total      += $budget->{'budget_amount'};
102     $totspent   += $budget->{'budget_spent'};
103     $totordered += $budget->{'budget_ordered'};
104     $totavail   += $budget->{'budget_avail'};
105
106     if ($budget->{budget_period_active}){
107         $total_active      += $budget->{'budget_amount'};
108         $totspent_active   += $budget->{'budget_spent'};
109         $totordered_active += $budget->{'budget_ordered'};
110         $totavail_active   += $budget->{'budget_avail'};    
111     }
112
113     push @budget_loop, $budget;
114 }
115
116 $template->param(
117     type          => 'intranet',
118     loop_budget   => \@budget_loop,
119     total         => $total,
120     totspent      => $totspent,
121     totordered    => $totordered,
122     totcomtd      => $totcomtd,
123     totavail      => $totavail,
124     total_active  => $total_active,
125     totspent_active     => $totspent_active,
126     totordered_active   => $totordered_active,
127     totavail_active     => $totavail_active,
128 );
129
130 my $cur = Koha::Acquisition::Currencies->get_active;
131 if ( $cur ) {
132     $template->param(
133         currency => $cur->currency,
134     );
135 }
136
137 output_html_with_http_headers $query, $cookie, $template->output;