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 with
16 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
17 # Suite 330, Boston, MA 02111-1307 USA
27 this script is the main page for acqui/
28 It presents the budget's dashboard, another table about differents currency with
29 their rates and the pending suggestions.
36 C<$status> is the status a suggestion could has. Default value is 'ASKED'.
37 thus, it can be REJECTED, ACCEPTED, ORDERED, ASKED, AVAIBLE
58 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
60 template_name
=> "acqui/acqui-home.tmpl",
64 flagsrequired
=> { acquisition
=> "*" },
70 my $borrower= GetMember
('borrowernumber' => $loggedinuser);
71 my ( $flags, $homebranch )= ($borrower->{'flags'},$borrower->{'branchcode'});
73 my @results = GetBudgets
($homebranch);
74 my $count = scalar @results;
75 my $branchname = GetBranchName
($homebranch);
77 #my $count = scalar @results;
86 # ---------------------------------------------------
89 my @rates = GetCurrencies
();
90 $count = scalar @rates;
92 my $active_currency = GetCurrency
;
95 my $cur_format = C4
::Context
->preference("CurrencyFormat");
96 if ( $cur_format eq 'FR' ) {
97 $num = new Number
::Format
(
98 'decimal_fill' => '2',
99 'decimal_point' => ',',
100 'int_curr_symbol' => '',
101 'mon_thousands_sep' => ' ',
102 'thousands_sep' => ' ',
103 'mon_decimal_point' => ','
105 } else { # US by default..
106 $num = new Number
::Format
(
107 'int_curr_symbol' => '',
108 'mon_thousands_sep' => ',',
109 'mon_decimal_point' => '.'
113 my @loop_currency = ();
114 for ( my $i = 0 ; $i < $count ; $i++ ) {
116 $line{currency
} = $rates[$i]->{'currency'} ;
117 $line{currency_symbol
} = $rates[$i]->{'symbol'};
118 $line{rate
} = sprintf ( '%.2f', $rates[$i]->{'rate'} );
119 push @loop_currency, \
%line;
123 my $status = $query->param('status') || "ASKED";
124 my $suggestion = CountSuggestion
($status);
125 my $suggestions_loop = &SearchSuggestion
( {STATUS
=> $status} );
126 # ---------------------------------------------------
128 my $period = GetBudgetPeriod
;
129 my $budget_period_id = $period->{budget_period_id
};
130 my $budget_branchcode = $period->{budget_branchcode
};
131 my $moo = GetBudgetHierarchy
('',$homebranch, $template->{param_map
}->{'USER_INFO'}[0]->{'borrowernumber'} );
133 my $period_total = 0;
137 foreach my $result (@results) {
138 # only get top-level budgets for display
139 # warn $result->{'budget_branchcode'};
141 $period_total += $result->{'budget_amount'};
143 my $a = $result->{'budget_code_indent'};
144 $a =~ s/\ /\ \;/g;
145 $result->{'budget_code_indent'} = $a;
147 my $r = GetBranchName
( $result->{'budget_owner_id'} );
148 $result->{'budget_branchname'} = GetBranchName
( $result->{'budget_branchcode'} );
150 my $member = GetMember
( borrowernumber
=> $result->{budget_owner_id
} );
151 my $member_full = $member->{'firstname'} . ' ' . $member->{'surname'} if $member;
153 $result->{'budget_owner'} = $member_full;
154 $result->{'budget_ordered'} = GetBudgetOrdered
( $result->{'budget_id'} );
155 $result->{'budget_spent'} = GetBudgetSpent
( $result->{'budget_id'} );
156 $result->{'budget_avail'} = $result->{'budget_amount'} - $result->{'budget_spent'} - $result->{'budget_ordered'};
158 $total += $result->{'budget_amount'};
159 $totspent += $result->{'budget_spent'};
160 $totordered += $result->{'budget_ordered'};
161 $totavail += $result->{'budget_avail'};
163 $result->{'budget_amount'} = $num->format_price( $result->{'budget_amount'} );
164 $result->{'budget_spent'} = $num->format_price( $result->{'budget_spent'} );
165 $result->{'budget_ordered'} = $num->format_price( $result->{'budget_ordered'} );
166 $result->{'budget_avail'} = $num->format_price( $result->{'budget_avail'} );
168 # my $spent_percent = ( $result->{'budget_spent'} / $result->{'budget_amount'} ) * 100;
169 # $result->{'budget_spent_percent'} = sprintf( "%00d", $spent_percent );
172 $result->{budget_owner_name
} = $member->{'firstname'} . ' ' . $member->{'surname'};
175 push( @loop_budget, { %{$result}, toggle
=> $toggle++ % 2, } );
179 classlist
=> $classlist,
181 loop_budget
=> \
@loop_budget,
182 loop_currency
=> \
@loop_currency,
183 active_symbol
=> $active_currency->{'symbol'},
184 branchname
=> $branchname,
185 budget
=> $period->{budget_name
},
186 total
=> $num->format_price( $total ),
187 totspent
=> $num->format_price( $totspent ),
188 totordered
=> $num->format_price( $totordered ),
189 totcomtd
=> $num->format_price( $totcomtd ),
190 totavail
=> $num->format_price( $totavail ),
191 suggestion
=> $suggestion,
194 output_html_with_http_headers
$query, $cookie, $template->output;