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 under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along
16 # with Koha; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 this script is the main page for acqui
44 my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user(
45 { template_name => 'acqui/acqui-home.tmpl',
49 flagsrequired => { acquisition => '*' },
54 my $user = GetMember( 'borrowernumber' => $loggedinuser );
55 my $branchname = GetBranchName($user->{branchcode});
60 my $cur_format = C4::Context->preference("CurrencyFormat");
61 if ( $cur_format eq 'FR' ) {
62 $num_formatter = Number::Format->new(
63 'decimal_fill' => '2',
64 'decimal_point' => ',',
65 'int_curr_symbol' => '',
66 'mon_thousands_sep' => ' ',
67 'thousands_sep' => ' ',
68 'mon_decimal_point' => ','
70 } else { # US by default..
71 $num_formatter = Number::Format->new(
72 'int_curr_symbol' => '',
73 'mon_thousands_sep' => ',',
74 'mon_decimal_point' => '.'
78 my $status = $query->param('status') || "ASKED";
79 my $suggestions_count = CountSuggestion($status);
81 my $budget_arr = GetBudgetHierarchy;
90 my $totspent_active = 0;
91 my $totordered_active = 0;
92 my $totavail_active = 0;
95 foreach my $budget ( @{$budget_arr} ) {
96 next unless (CanUserUseBudget($loggedinuser, $budget, $userflags));
98 $budget->{budget_code_indent} =~ s/\ /\ \;/g;
100 $budget->{'budget_branchname'} =
101 GetBranchName( $budget->{'budget_branchcode'} );
103 my $member = GetMember( borrowernumber => $budget->{budget_owner_id} );
105 $budget->{budget_owner_firstname} = $member->{'firstname'};
106 $budget->{budget_owner_surname} = $member->{'surname'};
107 $budget->{budget_owner_borrowernumber} = $member->{'borrowernumber'};
110 if ( !defined $budget->{budget_amount} ) {
111 $budget->{budget_amount} = 0;
114 $budget->{'budget_ordered'} = GetBudgetOrdered( $budget->{'budget_id'} );
115 $budget->{'budget_spent'} = GetBudgetSpent( $budget->{'budget_id'} );
116 if ( !defined $budget->{budget_spent} ) {
117 $budget->{budget_spent} = 0;
119 if ( !defined $budget->{budget_ordered} ) {
120 $budget->{budget_ordered} = 0;
122 $budget->{'budget_avail'} =
123 $budget->{'budget_amount'} - ( $budget->{'budget_spent'} + $budget->{'budget_ordered'} );
125 $total += $budget->{'budget_amount'};
126 $totspent += $budget->{'budget_spent'};
127 $totordered += $budget->{'budget_ordered'};
128 $totavail += $budget->{'budget_avail'};
130 if ($budget->{budget_period_active}){
131 $total_active += $budget->{'budget_amount'};
132 $totspent_active += $budget->{'budget_spent'};
133 $totordered_active += $budget->{'budget_ordered'};
134 $totavail_active += $budget->{'budget_avail'};
137 for my $field (qw( budget_amount budget_spent budget_ordered budget_avail ) ) {
138 $budget->{"formatted_$field"} = $num_formatter->format_price( $budget->{$field} );
141 push @budget_loop, $budget;
146 loop_budget => \@budget_loop,
147 branchname => $branchname,
148 total => $num_formatter->format_price($total),
149 totspent => $num_formatter->format_price($totspent),
150 totordered => $num_formatter->format_price($totordered),
151 totcomtd => $num_formatter->format_price($totcomtd),
152 totavail => $num_formatter->format_price($totavail),
153 total_active => $num_formatter->format_price($total_active),
154 totspent_active => $num_formatter->format_price($totspent_active),
155 totordered_active => $num_formatter->format_price($totordered_active),
156 totavail_active => $num_formatter->format_price($totavail_active),
157 suggestions_count => $suggestions_count,
160 output_html_with_http_headers $query, $cookie, $template->output;