3 # Copyright 2008 - 2009 BibLibre SARL
4 # This file is part of Koha.
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.
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.
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>.
25 this script is the main page for acqui
38 use Koha
::Acquisition
::Currencies
;
40 use Koha
::Suggestions
;
43 my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user
(
44 { template_name
=> 'acqui/acqui-home.tt',
47 flagsrequired
=> { acquisition
=> '*' },
52 my $status = $query->param('status') || "ASKED";
53 # Get current branch count and total viewable count, if they don't match then pass
55 if( C4
::Context
->only_my_library ){
56 my $local_pendingsuggestions_count = Koha
::Suggestions
->search({ status
=> "ASKED", branchcode
=> C4
::Context
->userenv()->{'branch'} })->count();
57 $template->param( suggestions_count
=> $local_pendingsuggestions_count );
59 my $pendingsuggestions = Koha
::Suggestions
->search({ status
=> "ASKED" });
60 my $local_pendingsuggestions_count = $pendingsuggestions->search({ 'me.branchcode' => C4
::Context
->userenv()->{'branch'} })->count();
61 my $pendingsuggestions_count = $pendingsuggestions->count();
63 all_pendingsuggestions
=> $pendingsuggestions_count != $local_pendingsuggestions_count ?
$pendingsuggestions_count : 0,
64 suggestions_count
=> $local_pendingsuggestions_count
68 my $budget_arr = GetBudgetHierarchy
;
77 my $totspent_active = 0;
78 my $totordered_active = 0;
79 my $totavail_active = 0;
82 foreach my $budget ( @
{$budget_arr} ) {
83 next unless (CanUserUseBudget
($loggedinuser, $budget, $userflags));
85 my $patron = Koha
::Patrons
->find( $budget->{budget_owner_id
} );
87 $budget->{budget_owner
} = $patron;
90 if ( !defined $budget->{budget_amount
} ) {
91 $budget->{budget_amount
} = 0;
93 if ( !defined $budget->{budget_spent
} ) {
94 $budget->{budget_spent
} = 0;
96 if ( !defined $budget->{budget_ordered
} ) {
97 $budget->{budget_ordered
} = 0;
99 $budget->{'budget_avail'} =
100 $budget->{'budget_amount'} - ( $budget->{'budget_spent'} + $budget->{'budget_ordered'} );
102 $total += $budget->{'budget_amount'};
103 $totspent += $budget->{'budget_spent'};
104 $totordered += $budget->{'budget_ordered'};
105 $totavail += $budget->{'budget_avail'};
107 if ($budget->{budget_period_active
}){
108 $total_active += $budget->{'budget_amount'};
109 $totspent_active += $budget->{'budget_spent'};
110 $totordered_active += $budget->{'budget_ordered'};
111 $totavail_active += $budget->{'budget_avail'};
114 push @budget_loop, $budget;
119 loop_budget
=> \
@budget_loop,
121 totspent
=> $totspent,
122 totordered
=> $totordered,
123 totcomtd
=> $totcomtd,
124 totavail
=> $totavail,
125 total_active
=> $total_active,
126 totspent_active
=> $totspent_active,
127 totordered_active
=> $totordered_active,
128 totavail_active
=> $totavail_active,
131 my $cur = Koha
::Acquisition
::Currencies
->get_active;
134 currency
=> $cur->currency,
138 output_html_with_http_headers
$query, $cookie, $template->output;