Fix typo in z3950 search in acquisitions
[koha.git] / admin / aqplan.pl
blobda4717925cfba959e2b8150a3e0aa536d5d92782
1 #!/usr/bin/perl
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
9 # version.
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.
19 #script to administer the aqbudgets0 table
20 #written 20/02/2002 by paul.poulain@free.fr
21 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
23 use strict;
24 #use warnings; FIXME - Bug 2505
25 use CGI;
26 use List::Util qw/min/;
27 use Date::Calc qw/Delta_YMD Easter_Sunday Today Decode_Date_EU/;
28 use Date::Manip qw/ ParseDate UnixDate DateCalc/;
29 use C4::Dates qw/format_date format_date_in_iso/;
30 use Number::Format qw(format_price);
31 use Text::CSV_XS;
33 use C4::Acquisition;
34 use C4::Budgets;
35 use C4::Context;
36 use C4::Output;
37 use C4::Koha;
38 use C4::Auth;
39 use C4::Input;
40 use C4::Debug;
42 my $input = new CGI;
43 #### $input
45 my $dbh = C4::Context->dbh;
47 my ( $template, $borrowernumber, $cookie, $staff_flags ) = get_template_and_user(
48 { template_name => "admin/aqplan.tmpl",
49 query => $input,
50 type => "intranet",
51 authnotrequired => 0,
52 flagsrequired => { acquisition => 'planning_manage' },
53 debug => 0,
57 my $budget_period_id = $input->param('budget_period_id');
58 # ' ------- get periods stuff ------------------'
59 # IF PERIOD_ID IS DEFINED, GET THE PERIOD - ELSE GET THE ACTIVE PERIOD BY DEFAULT
60 my $period = GetBudgetPeriod($budget_period_id);
61 my $count = GetPeriodsCount();
62 my $cur = GetCurrency;
64 $template->param( period_button_only => 1 ) if $count == 0;
68 # authcats_loop populates the YUI planning button
69 my $auth_cats_loop = GetBudgetAuthCats($budget_period_id);
70 my $budget_period_id = $period->{'budget_period_id'};
71 my $budget_period_startdate = $period->{'budget_period_startdate'};
72 my $budget_period_enddate = $period->{'budget_period_enddate'};
73 my $budget_period_locked = $period->{'budget_period_locked'};
74 my $budget_period_description = $period->{'budget_period_description'};
75 my $budget_period_dropbox = GetBudgetPeriodsDropbox($budget_period_id );
78 $template->param(
79 budget_period_id => $budget_period_id,
80 budget_period_locked => $budget_period_locked,
81 budget_period_description => $budget_period_description,
82 budget_period_dropbox => $budget_period_dropbox,
83 auth_cats_loop => $auth_cats_loop,
86 # ------- get periods stuff ------------------
88 my $borrower_id = $template->{param_map}->{'USER_INFO'}[0]->{'borrowernumber'};
89 my $borrower_branchcode = $template->{param_map}->{'USER_INFO'}[0]->{'branchcode'};
91 my $periods;
92 my $authcat = $input->param('authcat');
93 my $show_active = $input->param('show_active');
94 my $show_actual = $input->param('show_actual');
95 my $show_percent = $input->param('show_percent');
96 my $output = $input->param("output");
97 my $basename = $input->param("basename");
98 my $mime = $input->param("MIME");
99 my $del = $input->param("sep");
101 my $show_mine = $input->param('show_mine') ;
103 my @hide_cols = $input->param('hide_cols');
105 my $cur_format = C4::Context->preference("CurrencyFormat");
106 my $num;
108 if ( $cur_format eq 'FR' ) {
109 $num = new Number::Format(
110 'decimal_fill' => '2',
111 'decimal_point' => ',',
112 'int_curr_symbol' => '',
113 'mon_thousands_sep' => ' ',
114 'thousands_sep' => ' ',
115 'mon_decimal_point' => ','
117 } else { # US by default..
118 $num = new Number::Format(
119 'int_curr_symbol' => '',
120 'mon_thousands_sep' => ',',
121 'mon_decimal_point' => '.'
125 if ( $budget_period_locked == 1 && not defined $show_actual ) {
126 $show_actual = 1;
129 $authcat = 'Asort1' if not defined $authcat; # defaults to Asort if no authcat given
131 my $budget_id = $input->param('budget_id');
132 my $op = $input->param("op");
134 my $budget_branchcode;
136 my $budgets_ref = GetBudgetHierarchy( $budget_period_id, $show_mine?$template->{param_map}->{'USER_INFO'}[0]->{'branchcode'}:'', $show_mine?$template->{param_map}->{'USER_INFO'}[0]->{'borrowernumber'}:'' );
138 # build categories list
139 my $sth = $dbh->prepare("select distinct category from authorised_values where category like 'A%' ");
140 $sth->execute;
142 # the list
143 my @category_list;
145 # a hash, to check that some hardcoded categories exist.
146 my %categories;
147 while ( my ($category) = $sth->fetchrow_array ) {
148 push( @category_list, $category );
149 $categories{$category} = 1;
152 # push koha system categories
153 push( @category_list, 'MONTHS' );
154 push( @category_list, 'ITEMTYPES' );
155 push( @category_list, 'BRANCHES' );
156 push( @category_list, $$_{'authcat'} ) foreach @$auth_cats_loop;
158 #reorder the list
159 @category_list = sort { $a cmp $b } @category_list;
160 my $tab_list = CGI::scrolling_list(
161 -name => 'authcat',
162 -id => 'authcat',
163 -values => \@category_list,
164 -default => $authcat,
165 -size => 1,
166 -tabindex => '',
167 -multiple => 0,
170 $template->param( authcat_dropbox => $tab_list );
172 my @budgets = @$budgets_ref;
173 my $CGISort;
174 my @authvals;
175 my %labels;
177 my @names = $input->param();
178 # ------------------------------------------------------------
179 if ( $op eq 'save' ) {
180 #get budgets
181 my ( @buds, @auth_values );
182 foreach my $n (@names) {
183 next if $n =~ m/^[^0-9]/;
184 my @moo = split( ',', $n );
185 push @buds, $moo[0];
186 push @auth_values, $moo[1];
189 #uniq buds and auth
190 my %seen;
191 @buds = grep { !$seen{$_}++ } @buds;
192 @auth_values = grep { !$seen{$_}++ } @auth_values;
193 my @budget_ids;
194 my @budget_lines;
196 foreach my $budget (@buds) {
197 my %budget_line;
198 my @cells_line;
199 my %cell_hash;
201 foreach my $authvalue (@auth_values) {
202 # get actual stats
203 my $cell_name = "$budget,$authvalue";
204 my $estimated_amount = $input->param("$cell_name");
205 my %cell_hash = (
206 estimated_amount => $estimated_amount,
207 authvalue => $authvalue,
208 authcat => $authcat,
209 budget_id => $budget,
210 budget_period_id => $budget_period_id,
212 push( @cells_line, \%cell_hash );
215 %budget_line = (
216 lines => \@cells_line,
218 push( @budget_lines, \%budget_line );
220 my $plan = \@budget_lines;
221 ModBudgetPlan( $plan, $budget_period_id, $authcat );
223 HideCols($authcat, @hide_cols);
227 # ------------------------------------------------------------
228 if ( $authcat =~ m/^Asort/ ) {
229 # ----------- copied from C4::Input::buildCGIsort()
230 my $query = qq{ SELECT * FROM authorised_values WHERE category=? order by lib };
231 my $sth = $dbh->prepare($query);
232 $sth->execute($authcat );
233 if ( $sth->rows > 0 ) {
234 for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
235 my $results = $sth->fetchrow_hashref;
236 push @authvals, $results->{authorised_value};
237 $labels{ $results->{authorised_value} } = $results->{lib};
240 $sth->finish;
241 @authvals = sort { $a <=> $b } @authvals;
243 elsif ( $authcat eq 'MONTHS' ) {
245 # build months
246 my @start_date = UnixDate( $budget_period_startdate, ( '%Y', '%m', '%d' ) );
247 my @end_date = UnixDate( $budget_period_enddate, ( '%Y', '%m', '%d' ) );
249 my ( $Dy, $Dm, $Dd ) = Delta_YMD( @start_date, @end_date );
251 #calc number of months between
252 my $months = ( $Dy * 12 ) + $Dm;
253 my $start_month = @start_date[1];
254 my $end_month = ( $Dy * 12 ) + $Dm;
256 for my $mth ( 0 ... $months ) {
257 $mth = DateCalc( $budget_period_startdate, "+ $mth months" );
258 $mth = UnixDate( $mth, "%Y-%m" );
259 push( @authvals, $mth );
261 foreach my $vv (@authvals) {
262 $labels{$vv} = $vv;
266 elsif ( $authcat eq 'ITEMTYPES' ) {
267 my $query = qq| SELECT itemtype, description FROM itemtypes |;
268 my $sth = $dbh->prepare($query);
269 $sth->execute( );
271 if ( $sth->rows > 0 ) {
272 for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
273 my $results = $sth->fetchrow_hashref;
274 push @authvals, $results->{itemtype};
275 $labels{ $results->{itemtype} } = $results->{description};
278 $sth->finish;
280 } elsif ( $authcat eq 'BRANCHES' ) {
282 my $query = qq| SELECT branchcode, branchname FROM branches |;
283 my $sth = $dbh->prepare($query);
284 $sth->execute();
286 if ( $sth->rows > 0 ) {
287 for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
288 my $results = $sth->fetchrow_hashref;
289 push @authvals, $results->{branchcode};
290 $labels{ $results->{branchcode} } = $results->{branchname};
293 $sth->finish;
294 } elsif ($authcat) {
295 my $query = qq{ SELECT * FROM authorised_values WHERE category=? order by lib };
296 my $sth = $dbh->prepare($query);
297 $sth->execute($authcat);
298 if ( $sth->rows > 0 ) {
299 for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
300 my $results = $sth->fetchrow_hashref;
301 push @authvals, $results->{authorised_value};
302 $labels{ $results->{authorised_value} } = $results->{lib};
305 $sth->finish;
308 my @authvals_row;
309 my $i=1;
310 foreach my $val (@authvals) {
311 my %auth_hash;
312 $auth_hash{val} = $labels{$val};
313 $auth_hash{code} = $val;
314 $auth_hash{colnum} = $i++;
316 # display lookup
317 $auth_hash{display} = GetCols( $authcat, $auth_hash{code});
319 push( @authvals_row, \%auth_hash );
322 #get budgets
323 my ( @buds, @auth_values );
324 foreach my $n (@names) {
325 next if $n =~ m/^[^0-9]/;
326 $n =~ m/(\d*),(.*)/;
327 push @buds, $1;
328 push @auth_values, $2;
332 # ------------------------------------------------------------
333 # DEFAULT DISPLAY BEGINS
335 my @mime = ( C4::Context->preference("MIME") );
336 my $CGIextChoice = CGI::scrolling_list(
337 -name => 'MIME',
338 -id => 'MIME',
339 -values => \@mime,
340 -size => 1,
341 -multiple => 0
344 my @dels = ( C4::Context->preference("delimiter") );
345 my $CGIsepChoice = CGI::scrolling_list(
346 -name => 'sep',
347 -id => 'sep',
348 -values => \@dels,
349 -size => 1,
350 -multiple => 0
353 my ( @budget_lines, %cell_hash );
356 foreach my $budget (@budgets) {
357 my $budget_lock;
359 # check budget permission
360 if ( $period->{budget_period_locked} == 1 ) {
361 $budget_lock = 1;
362 } elsif ( $budget->{budget_permission} == 1 ) {
363 $budget_lock = 1 if $borrower_id != $budget->{'budget_owner_id'};
364 } elsif ( $budget->{budget_permission} == 2 ) {
365 $budget_lock = 1 if $borrower_branchcode ne $budget->{budget_branchcode};
368 # allow hard-coded itemtype and branch planning
369 unless ( $authcat eq 'ITEMTYPES'
370 or $authcat eq 'BRANCHES'
371 or $authcat eq 'MONTHS' ) {
373 # but skip budgets that dont match the current auth-category
374 next if ( $budget->{'sort1_authcat'} ne $authcat
375 && $budget->{'sort2_authcat'} ne $authcat );
378 my %budget_line; # each row of the table
379 my @cells_line;
380 my $actual_spent;
381 my $estimated_spent;
383 my $i = 0;
384 foreach my $authvalue (@authvals) {
386 # get actual stats
387 my %cell = (
388 budget_id => $budget->{'budget_id'},
389 budget_period_id => $budget->{'budget_period_id'},
390 cell_name => $budget->{'budget_id'} . ',' . $authvalue,
391 authvalue => $authvalue,
392 authcat => $authcat,
393 cell_authvalue => $authvalue,
394 budget_lock => $budget_lock,
397 my ( $actual, $estimated, $display ) = GetBudgetsPlanCell( \%cell, $period, $budget );
398 $cell{actual_amount} = sprintf( "%.2f", $actual );
399 $cell{estimated_amount} = sprintf( "%.2f", $estimated );
400 $cell{display} = $authvals_row[$i]{display};
401 $cell{colnum} = $i;
403 $actual_spent += $cell{actual_amount};
404 $estimated_spent += $cell{estimated_amount};
407 push( @cells_line, \%cell );
408 $i++;
411 my $budget_act_remain = $budget->{budget_amount} - $actual_spent;
412 my $budget_est_remain = $budget->{budget_amount} - $estimated_spent;
414 %budget_line = (
415 lines => \@cells_line,
416 budget_name_indent => $budget->{budget_name_indent},
417 budget_amount_formatted => $num->format_price( $budget->{budget_amount} ),
418 budget_amount => $budget->{budget_amount},
419 budget_alloc => $budget->{budget_alloc},
420 budget_act_remain => sprintf( "%.2f", $budget_act_remain ),
421 budget_est_remain => sprintf( "%.2f", $budget_est_remain ),
422 budget_id => $budget->{budget_id},
423 budget_lock => $budget_lock,
428 $budget_line{est_negative} = '1' if $budget_est_remain < 0;
429 $budget_line{est_positive} = '1' if $budget_est_remain > 0;
430 $budget_line{act_negative} = '1' if $budget_act_remain < 0;
431 $budget_line{act_positive} = '1' if $budget_act_remain > 0;
433 # skip if active set , and spent == 0
434 next if ( $show_active == '1' && ( $actual_spent == 0 ) );
436 push( @budget_lines, \%budget_line );
439 if ( $output eq "file" ) {
440 _print_to_csv(\@authvals_row, \@budget_lines);
441 exit(1);
444 $template->param(
445 authvals_row => \@authvals_row,
446 budget_lines => \@budget_lines,
447 budget_period_description => $period->{'budget_period_description'},
448 budget_period_locked => $period->{'budget_period_locked'},
449 budget_period_id => $budget_period_id,
450 authcat => $authcat,
451 show_active => $show_active,
452 show_actual => $show_actual,
453 show_percent => $show_percent,
454 show_mine => $show_mine,
455 cur => $cur->{symbol},
456 cur_format => $cur_format,
457 CGIextChoice => $CGIextChoice,
458 CGIsepChoice => $CGIsepChoice,
460 authvals => \@authvals_row,
461 hide_cols_loop => \@hide_cols
464 output_html_with_http_headers $input, $cookie, $template->output;
466 sub _print_to_csv {
467 my ( $header, $results ) = @_;
469 binmode STDOUT, ":utf8";
471 my $csv = Text::CSV_XS->new(
472 { sep_char => $del,
473 always_quote => 'TRUE',
476 print $input->header(
477 -type => 'application/vnd.sun.xml.calc',
478 -encoding => 'utf-8',
479 -attachment => "$basename.csv",
480 -name => "$basename.csv"
482 my @col = ( 'Budget name', 'Budget total' );
483 foreach my $row (@$header) {
484 push @col, $row->{'val'};
486 push @col, 'Budget remaining';
488 $csv->combine(@col);
489 my $str = $csv->string;
490 print "$str\n";
492 foreach my $row (@$results) {
493 $row->{'budget_name_indent'} =~ s/&nbsp;/ /g;
494 my @col = ( $row->{'budget_name_indent'}, $row->{'budget_amount'} );
495 my $l = $row->{'lines'};
496 foreach my $line (@$l) {
497 push @col, $line->{'estimated_amount'};
499 push @col, $row->{'budget_est_remain'};
500 $csv->combine(@col);
501 my $str = $csv->string;
502 print "$str\n";