Bug 9978: Replace license header with the correct license (GPLv3+)
[koha.git] / admin / aqplan.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 #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)
22
23 use strict;
24 #use warnings; FIXME - Bug 2505
25 use CGI qw ( -utf8 );
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 Text::CSV_XS;
31
32 use C4::Acquisition;
33 use C4::Budgets;
34 use C4::Context;
35 use C4::Output;
36 use C4::Koha;
37 use C4::Auth;
38 use C4::Input;
39 use C4::Debug;
40
41 my $input = new CGI;
42 ####  $input
43
44 my $dbh = C4::Context->dbh;
45
46 my ( $template, $borrowernumber, $cookie, $staff_flags ) = get_template_and_user(
47     {   template_name   => "admin/aqplan.tt",
48         query           => $input,
49         type            => "intranet",
50         authnotrequired => 0,
51         flagsrequired   => { acquisition => 'planning_manage' },
52         debug           => 0,
53     }
54 );
55
56 my $budget_period_id = $input->param('budget_period_id');
57 # ' ------- get periods stuff ------------------'
58 # IF PERIOD_ID IS DEFINED,  GET THE PERIOD - ELSE GET THE ACTIVE PERIOD BY DEFAULT
59 my $period = GetBudgetPeriod($budget_period_id);
60 my $count  = GetPeriodsCount();
61 my $cur    = GetCurrency;
62 $template->param( symbol => $cur->{symbol},
63                   currency => $cur->{currency}
64                );
65 $template->param( period_button_only => 1 ) if $count == 0;
66
67
68
69 # authcats_loop populates the YUI planning button
70 my $auth_cats_loop            = GetBudgetAuthCats($budget_period_id);
71 my $budget_period_id          = $period->{'budget_period_id'};
72 my $budget_period_startdate   = $period->{'budget_period_startdate'};
73 my $budget_period_enddate     = $period->{'budget_period_enddate'};
74 my $budget_period_locked      = $period->{'budget_period_locked'};
75 my $budget_period_description = $period->{'budget_period_description'};
76
77
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     auth_cats_loop            => $auth_cats_loop,
83 );
84
85 # ------- get periods stuff ------------------
86
87 my $borrower_id         = $template->{VARS}->{'USER_INFO'}[0]->{'borrowernumber'};
88 my $borrower_branchcode = $template->{VARS}->{'USER_INFO'}[0]->{'branchcode'};
89
90 my $periods;
91 my $authcat      = $input->param('authcat');
92 my $show_active  = $input->param('show_active');
93 my $show_actual  = $input->param('show_actual');
94 my $show_percent = $input->param('show_percent');
95 my $output       = $input->param("output");
96 my $basename     = $input->param("basename");
97 my $del          = $input->param("sep");
98
99 my $show_mine       = $input->param('show_mine') ;
100
101 my @hide_cols      = $input->param('hide_cols');
102
103 if ( $budget_period_locked == 1  && not defined  $show_actual ) {
104      $show_actual  = 1;
105 }
106
107 $authcat = 'Asort1' if  not defined $authcat; # defaults to Asort if no authcat given
108
109 my $budget_id = $input->param('budget_id');
110 my $op        = $input->param("op");
111
112 my $budget_branchcode;
113
114 my $budgets_ref = GetBudgetHierarchy( $budget_period_id, $show_mine?$template->{VARS}->{'USER_INFO'}[0]->{'branchcode'}:'', $show_mine?$template->{VARS}->{'USER_INFO'}[0]->{'borrowernumber'}:'' );
115
116 # build categories list
117 my $sth = $dbh->prepare("select distinct category from authorised_values where category like 'A%' ");
118 $sth->execute;
119
120 # the list
121 my @category_list;
122
123 # a hash, to check that some hardcoded categories exist.
124 my %categories;
125 while ( my ($category) = $sth->fetchrow_array ) {
126     push( @category_list, $category );
127     $categories{$category} = 1;
128 }
129
130 # push koha system categories
131 push( @category_list, 'MONTHS' );
132 push( @category_list, 'ITEMTYPES' );
133 push( @category_list, 'BRANCHES' );
134 push( @category_list, $$_{'authcat'} ) foreach @$auth_cats_loop;
135
136 #reorder the list
137 @category_list = sort { $a cmp $b } @category_list;
138
139 $template->param( authcat_dropbox => {
140         values => \@category_list,
141         default => $authcat,
142     });
143
144 my @budgets = @$budgets_ref;
145 my $CGISort;
146 my @authvals;
147 my %labels;
148
149 my @names = $input->param();
150 # ------------------------------------------------------------
151 if ( $op eq 'save' ) {
152     #get budgets
153     my ( @buds, @auth_values );
154     foreach my $n (@names) {
155         next if $n =~ m/^[^0-9]/;
156         my @moo = split( ',', $n );
157         push @buds, $moo[0];
158         push @auth_values, $moo[1];
159     }
160
161     #uniq buds and auth
162     my %seen;
163     @buds        = grep { !$seen{$_}++ } @buds;
164     @auth_values = grep { !$seen{$_}++ } @auth_values;
165     my @budget_ids;
166     my @budget_lines;
167
168     foreach my $budget (@buds) {
169         my %budget_line;
170         my @cells_line;
171         my %cell_hash;
172
173         foreach my $authvalue (@auth_values) {
174             # get actual stats
175             my $cell_name        = "$budget,$authvalue";
176             my $estimated_amount = $input->param("$cell_name");
177             my %cell_hash = (
178                 estimated_amount => $estimated_amount,
179                 authvalue        => $authvalue,
180                 authcat          => $authcat,
181                 budget_id        => $budget,
182                 budget_period_id => $budget_period_id,
183             );
184             push( @cells_line, \%cell_hash );
185         }
186
187         %budget_line = (
188             lines => \@cells_line,
189         );
190         push( @budget_lines, \%budget_line );
191     }
192     my $plan = \@budget_lines;
193     ModBudgetPlan( $plan, $budget_period_id, $authcat );
194
195 HideCols($authcat, @hide_cols);
196
197
198 }
199 # ------------------------------------------------------------
200 if ( $authcat =~ m/^Asort/ ) {
201    my $query = qq{ SELECT * FROM authorised_values WHERE category=? order by lib };
202     my $sth   = $dbh->prepare($query);
203     $sth->execute($authcat  );
204     if ( $sth->rows > 0 ) {
205         for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
206             my $results = $sth->fetchrow_hashref;
207             push @authvals, $results->{authorised_value};
208             $labels{ $results->{authorised_value} } = $results->{lib};
209         }
210     }
211     $sth->finish;
212     @authvals = sort { $a <=> $b } @authvals;
213 }
214 elsif ( $authcat eq 'MONTHS' ) {
215
216     # build months
217     my @start_date = UnixDate( $budget_period_startdate, ( '%Y', '%m', '%d' ) );
218     my @end_date   = UnixDate( $budget_period_enddate,   ( '%Y', '%m', '%d' ) );
219
220     my ( $Dy, $Dm, $Dd ) = Delta_YMD( @start_date, @end_date );
221
222     #calc number of months between
223     my $months      = ( $Dy * 12 ) + $Dm;
224     my $start_month = @start_date[1];
225     my $end_month   = ( $Dy * 12 ) + $Dm;
226
227     for my $mth ( 0 ... $months ) {
228         $mth = DateCalc( $budget_period_startdate, "+ $mth months" );
229         $mth = UnixDate( $mth, "%Y-%m" );
230         push( @authvals, $mth );
231     }
232     foreach my $vv (@authvals) {
233         $labels{$vv} = $vv;
234     }
235 }
236
237 elsif ( $authcat eq 'ITEMTYPES' ) {
238     my $query = qq| SELECT itemtype, description FROM itemtypes |;
239     my $sth   = $dbh->prepare($query);
240     $sth->execute(  );
241
242     if ( $sth->rows > 0 ) {
243         for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
244             my $results = $sth->fetchrow_hashref;
245             push @authvals, $results->{itemtype};
246             $labels{ $results->{itemtype} } = $results->{description};
247         }
248     }
249     $sth->finish;
250
251 } elsif ( $authcat eq 'BRANCHES' ) {
252
253     my $query = qq| SELECT branchcode, branchname FROM branches |;
254     my $sth   = $dbh->prepare($query);
255     $sth->execute();
256
257     if ( $sth->rows > 0 ) {
258         for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
259             my $results = $sth->fetchrow_hashref;
260             push @authvals, $results->{branchcode};
261             $labels{ $results->{branchcode} } = $results->{branchname};
262         }
263     }
264     $sth->finish;
265 } elsif ($authcat) {
266     my $query = qq{ SELECT * FROM authorised_values WHERE category=? order by lib };
267     my $sth   = $dbh->prepare($query);
268     $sth->execute($authcat);
269     if ( $sth->rows > 0 ) {
270         for ( my $i = 0 ; $i < $sth->rows ; $i++ ) {
271             my $results = $sth->fetchrow_hashref;
272             push @authvals, $results->{authorised_value};
273             $labels{ $results->{authorised_value} } = $results->{lib};
274         }
275     }
276     $sth->finish;
277 }
278
279 my @authvals_row;
280 my $i=1;
281 foreach my $val (@authvals) {
282     my %auth_hash;
283     $auth_hash{val} =   $labels{$val};
284     $auth_hash{code} =   $val;
285     $auth_hash{colnum} =   $i++;
286
287     # display lookup
288     $auth_hash{display} = GetCols( $authcat,  $auth_hash{code});
289
290     push( @authvals_row, \%auth_hash );
291 }
292
293 #get budgets
294 my ( @buds, @auth_values );
295 foreach my $n (@names) {
296     next if $n =~ m/^[^0-9]/;
297     $n =~ m/(\d*),(.*)/;
298     push @buds, $1;
299     push @auth_values, $2;
300 }
301
302
303 # ------------------------------------------------------------
304 #         DEFAULT DISPLAY BEGINS
305
306 my $CGIextChoice = ( 'CSV' ); # FIXME translation
307 my $CGIsepChoice = ( C4::Context->preference("delimiter") );
308
309 my ( @budget_lines, %cell_hash );
310
311
312 foreach my $budget (@budgets) {
313     my $budget_lock;
314
315     unless (CanUserUseBudget($borrowernumber, $budget, $staff_flags)) {
316         $budget_lock = 1
317     }
318
319     # check budget permission
320     if ( $period->{budget_period_locked} == 1 ) {
321         $budget_lock = 1;
322     } elsif ( $budget->{budget_permission} == 1 ) {
323         $budget_lock = 1 if $borrower_id != $budget->{'budget_owner_id'};
324     } elsif ( $budget->{budget_permission} == 2 ) {
325         $budget_lock = 1 if $borrower_branchcode ne $budget->{budget_branchcode};
326     }
327
328     # allow hard-coded itemtype and branch planning
329     unless ( $authcat eq 'ITEMTYPES'
330         or  $authcat eq 'BRANCHES'
331         or  $authcat eq 'MONTHS' ) {
332
333         # but skip budgets that dont match the current auth-category
334         next if ( $budget->{'sort1_authcat'} ne $authcat
335             && $budget->{'sort2_authcat'} ne $authcat );
336     }
337
338     my %budget_line; # each row of the  table
339     my @cells_line;
340     my $actual_spent;
341     my $estimated_spent;
342
343     my $i = 0;
344     foreach my $authvalue (@authvals) {
345
346         # get actual stats
347         my %cell = (
348             budget_id        => $budget->{'budget_id'},
349             budget_period_id => $budget->{'budget_period_id'},
350             cell_name        => $budget->{'budget_id'} . ',' . $authvalue,
351             authvalue        => $authvalue,
352             authcat          => $authcat,
353             cell_authvalue   => $authvalue,
354             budget_lock      => $budget_lock,
355         );
356
357         my ( $actual, $estimated, $display ) = GetBudgetsPlanCell( \%cell, $period, $budget );
358         $cell{actual_amount}    = sprintf( "%.2f", $actual );
359         $cell{estimated_amount} = sprintf( "%.2f", $estimated );
360         $cell{display}          = $authvals_row[$i]{display};
361         $cell{colnum}           = $i;
362
363         $actual_spent    += $cell{actual_amount};
364         $estimated_spent += $cell{estimated_amount};
365
366
367         push( @cells_line, \%cell );
368         $i++;
369     }
370
371     my $budget_act_remain = $budget->{budget_amount} - $actual_spent;
372     my $budget_est_remain = $budget->{budget_amount} - $estimated_spent;
373
374     %budget_line = (
375         lines                   => \@cells_line,
376         budget_name_indent      => $budget->{budget_name_indent},
377         budget_amount           => $budget->{budget_amount},
378         budget_alloc            => $budget->{budget_alloc},
379         budget_act_remain       => sprintf( "%.2f", $budget_act_remain ),
380         budget_est_remain       => sprintf( "%.2f", $budget_est_remain ),
381         budget_id               => $budget->{budget_id},
382         budget_lock             => $budget_lock,
383     );
384
385
386
387     $budget_line{est_negative} = '1' if $budget_est_remain < 0;
388     $budget_line{est_positive} = '1' if $budget_est_remain > 0;
389     $budget_line{act_negative} = '1' if $budget_act_remain < 0;
390     $budget_line{act_positive} = '1' if $budget_act_remain > 0;
391
392     # skip if active set , and spent == 0
393     next if ( $show_active == '1' && ( $actual_spent == 0 ) );
394
395     push( @budget_lines, \%budget_line );
396 }
397
398 if ( $output eq "file" ) {
399     _print_to_csv(\@authvals_row, \@budget_lines);
400     exit(1);
401 }
402
403 my $branchloop = C4::Branch::GetBranchesLoop();
404 $template->param(
405     authvals_row              => \@authvals_row,
406     budget_lines              => \@budget_lines,
407     budget_period_description => $period->{'budget_period_description'},
408     budget_period_locked      => $period->{'budget_period_locked'},
409     budget_period_id          => $budget_period_id,
410     authcat                   => $authcat,
411     show_active               => $show_active,
412     show_actual               => $show_actual,
413     show_percent              => $show_percent,
414     show_mine                 => $show_mine,
415     CGIextChoice              => $CGIextChoice,
416     CGIsepChoice              => $CGIsepChoice,
417
418     authvals              => \@authvals_row,
419     hide_cols_loop              => \@hide_cols,
420     branchloop                => $branchloop,
421 );
422
423 output_html_with_http_headers $input, $cookie, $template->output;
424
425 sub _print_to_csv {
426     my ( $header, $results ) = @_;
427
428     binmode STDOUT, ':encoding(UTF-8)';
429
430     my $csv = Text::CSV_XS->new(
431         {   sep_char     => $del,
432             always_quote => 'TRUE',
433         }
434     );
435     print $input->header(
436         -type       => 'application/vnd.sun.xml.calc',
437         -encoding   => 'utf-8',
438         -attachment => "$basename.csv",
439         -name       => "$basename.csv"
440     );
441     my @col = ( 'Budget name', 'Budget total' );
442     foreach my $row (@$header) {
443         push @col, $row->{'val'};
444     }
445     push @col, 'Budget remaining';
446
447     $csv->combine(@col);
448     my $str = $csv->string;
449     print "$str\n";
450
451     foreach my $row (@$results) {
452         $row->{'budget_name_indent'} =~ s/&nbsp;/ /g;
453         my @col = ( $row->{'budget_name_indent'}, $row->{'budget_amount'} );
454         my $l = $row->{'lines'};
455         foreach my $line (@$l) {
456             push @col, $line->{'estimated_amount'};
457         }
458         push @col, $row->{'budget_est_remain'};
459         $csv->combine(@col);
460         my $str = $csv->string;
461         print "$str\n";
462     }
463 }