Bug 22454: Unit tests
[koha.git] / C4 / Budgets.pm
blob620daf6b673319ea3c0b14c623a86584848c79e5
1 package C4::Budgets;
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use strict;
21 #use warnings; FIXME - Bug 2505
22 use C4::Context;
23 use Koha::Database;
24 use Koha::Patrons;
25 use Koha::Acquisition::Invoice::Adjustments;
26 use C4::Debug;
27 use vars qw(@ISA @EXPORT);
29 BEGIN {
30 require Exporter;
31 @ISA = qw(Exporter);
32 @EXPORT = qw(
34 &GetBudget
35 &GetBudgetByOrderNumber
36 &GetBudgetByCode
37 &GetBudgets
38 &BudgetsByActivity
39 &GetBudgetsReport
40 &GetBudgetReport
41 &GetBudgetHierarchy
42 &AddBudget
43 &ModBudget
44 &DelBudget
45 &GetBudgetSpent
46 &GetBudgetOrdered
47 &GetBudgetName
48 &GetPeriodsCount
49 GetBudgetHierarchySpent
50 GetBudgetHierarchyOrdered
52 &GetBudgetUsers
53 &ModBudgetUsers
54 &CanUserUseBudget
55 &CanUserModifyBudget
57 &GetBudgetPeriod
58 &GetBudgetPeriods
59 &ModBudgetPeriod
60 &AddBudgetPeriod
61 &DelBudgetPeriod
63 &ModBudgetPlan
65 &GetBudgetsPlanCell
66 &AddBudgetPlanValue
67 &GetBudgetAuthCats
68 &BudgetHasChildren
69 &CheckBudgetParent
70 &CheckBudgetParentPerm
72 &HideCols
73 &GetCols
77 # ----------------------------BUDGETS.PM-----------------------------";
79 =head1 FUNCTIONS ABOUT BUDGETS
81 =cut
83 sub HideCols {
84 my ( $authcat, @hide_cols ) = @_;
85 my $dbh = C4::Context->dbh;
87 my $sth1 = $dbh->prepare(
88 qq|
89 UPDATE aqbudgets_planning SET display = 0
90 WHERE authcat = ?
91 AND authvalue = ? |
93 foreach my $authvalue (@hide_cols) {
94 # $sth1->{TraceLevel} = 3;
95 $sth1->execute( $authcat, $authvalue );
99 sub GetCols {
100 my ( $authcat, $authvalue ) = @_;
102 my $dbh = C4::Context->dbh;
103 my $sth = $dbh->prepare(
105 SELECT count(display) as cnt from aqbudgets_planning
106 WHERE authcat = ?
107 AND authvalue = ? and display = 0 |
110 # $sth->{TraceLevel} = 3;
111 $sth->execute( $authcat, $authvalue );
112 my $res = $sth->fetchrow_hashref;
114 return $res->{cnt} > 0 ? 0: 1
118 sub CheckBudgetParentPerm {
119 my ( $budget, $borrower_id ) = @_;
120 my $depth = $budget->{depth};
121 my $parent_id = $budget->{budget_parent_id};
122 while ($depth) {
123 my $parent = GetBudget($parent_id);
124 $parent_id = $parent->{budget_parent_id};
125 if ( $parent->{budget_owner_id} == $borrower_id ) {
126 return 1;
128 $depth--
130 return 0;
133 sub AddBudgetPeriod {
134 my ($budgetperiod) = @_;
135 return unless($budgetperiod->{budget_period_startdate} && $budgetperiod->{budget_period_enddate});
137 undef $budgetperiod->{budget_period_id};
138 my $resultset = Koha::Database->new()->schema->resultset('Aqbudgetperiod');
139 return $resultset->create($budgetperiod)->id;
141 # -------------------------------------------------------------------
142 sub GetPeriodsCount {
143 my $dbh = C4::Context->dbh;
144 my $sth = $dbh->prepare("
145 SELECT COUNT(*) AS sum FROM aqbudgetperiods ");
146 $sth->execute();
147 my $res = $sth->fetchrow_hashref;
148 return $res->{'sum'};
151 # -------------------------------------------------------------------
152 sub CheckBudgetParent {
153 my ( $new_parent, $budget ) = @_;
154 my $new_parent_id = $new_parent->{'budget_id'};
155 my $budget_id = $budget->{'budget_id'};
156 my $dbh = C4::Context->dbh;
157 my $parent_id_tmp = $new_parent_id;
159 # check new-parent is not a child (or a child's child ;)
160 my $sth = $dbh->prepare(qq|
161 SELECT budget_parent_id FROM
162 aqbudgets where budget_id = ? | );
163 while (1) {
164 $sth->execute($parent_id_tmp);
165 my $res = $sth->fetchrow_hashref;
166 if ( $res->{'budget_parent_id'} == $budget_id ) {
167 return 1;
169 if ( not defined $res->{'budget_parent_id'} ) {
170 return 0;
172 $parent_id_tmp = $res->{'budget_parent_id'};
176 # -------------------------------------------------------------------
177 sub BudgetHasChildren {
178 my ( $budget_id ) = @_;
179 my $dbh = C4::Context->dbh;
180 my $sth = $dbh->prepare(qq|
181 SELECT count(*) as sum FROM aqbudgets
182 WHERE budget_parent_id = ? | );
183 $sth->execute( $budget_id );
184 my $sum = $sth->fetchrow_hashref;
185 return $sum->{'sum'};
188 sub GetBudgetChildren {
189 my ( $budget_id ) = @_;
190 my $dbh = C4::Context->dbh;
191 return $dbh->selectall_arrayref(q|
192 SELECT * FROM aqbudgets
193 WHERE budget_parent_id = ?
194 |, { Slice => {} }, $budget_id );
197 sub SetOwnerToFundHierarchy {
198 my ( $budget_id, $borrowernumber ) = @_;
200 my $budget = GetBudget( $budget_id );
201 $budget->{budget_owner_id} = $borrowernumber;
202 ModBudget( $budget );
203 my $children = GetBudgetChildren( $budget_id );
204 for my $child ( @$children ) {
205 SetOwnerToFundHierarchy( $child->{budget_id}, $borrowernumber );
209 # -------------------------------------------------------------------
210 sub GetBudgetsPlanCell {
211 my ( $cell, $period, $budget ) = @_;
212 my ($actual, $sth);
213 my $dbh = C4::Context->dbh;
214 if ( $cell->{'authcat'} eq 'MONTHS' ) {
215 # get the actual amount
216 $sth = $dbh->prepare( qq|
218 SELECT SUM(ecost_tax_included) AS actual FROM aqorders
219 WHERE budget_id = ? AND
220 entrydate like "$cell->{'authvalue'}%" |
222 $sth->execute( $cell->{'budget_id'} );
223 } elsif ( $cell->{'authcat'} eq 'BRANCHES' ) {
224 # get the actual amount
225 $sth = $dbh->prepare( qq|
227 SELECT SUM(ecost_tax_included) FROM aqorders
228 LEFT JOIN aqorders_items
229 ON (aqorders.ordernumber = aqorders_items.ordernumber)
230 LEFT JOIN items
231 ON (aqorders_items.itemnumber = items.itemnumber)
232 WHERE budget_id = ? AND homebranch = ? | );
234 $sth->execute( $cell->{'budget_id'}, $cell->{'authvalue'} );
235 } elsif ( $cell->{'authcat'} eq 'ITEMTYPES' ) {
236 # get the actual amount
237 $sth = $dbh->prepare( qq|
239 SELECT SUM( ecost_tax_included * quantity) AS actual
240 FROM aqorders JOIN biblioitems
241 ON (biblioitems.biblionumber = aqorders.biblionumber )
242 WHERE aqorders.budget_id = ? and itemtype = ? |
244 $sth->execute( $cell->{'budget_id'},
245 $cell->{'authvalue'} );
247 # ELSE GENERIC ORDERS SORT1/SORT2 STAT COUNT.
248 else {
249 # get the actual amount
250 $sth = $dbh->prepare( qq|
252 SELECT SUM(ecost_tax_included * quantity) AS actual
253 FROM aqorders
254 JOIN aqbudgets ON (aqbudgets.budget_id = aqorders.budget_id )
255 WHERE aqorders.budget_id = ? AND
256 ((aqbudgets.sort1_authcat = ? AND sort1 =?) OR
257 (aqbudgets.sort2_authcat = ? AND sort2 =?)) |
259 $sth->execute( $cell->{'budget_id'},
260 $budget->{'sort1_authcat'},
261 $cell->{'authvalue'},
262 $budget->{'sort2_authcat'},
263 $cell->{'authvalue'}
266 $actual = $sth->fetchrow_array;
268 # get the estimated amount
269 $sth = $dbh->prepare( qq|
271 SELECT estimated_amount AS estimated, display FROM aqbudgets_planning
272 WHERE budget_period_id = ? AND
273 budget_id = ? AND
274 authvalue = ? AND
275 authcat = ? |
277 $sth->execute( $cell->{'budget_period_id'},
278 $cell->{'budget_id'},
279 $cell->{'authvalue'},
280 $cell->{'authcat'},
284 my $res = $sth->fetchrow_hashref;
285 # my $display = $res->{'display'};
286 my $estimated = $res->{'estimated'};
289 return $actual, $estimated;
292 # -------------------------------------------------------------------
293 sub ModBudgetPlan {
294 my ( $budget_plan, $budget_period_id, $authcat ) = @_;
295 my $dbh = C4::Context->dbh;
296 foreach my $buds (@$budget_plan) {
297 my $lines = $buds->{lines};
298 my $sth = $dbh->prepare( qq|
299 DELETE FROM aqbudgets_planning
300 WHERE budget_period_id = ? AND
301 budget_id = ? AND
302 authcat = ? |
304 #delete a aqplan line of cells, then insert new cells,
305 # these could be UPDATES rather than DEL/INSERTS...
306 $sth->execute( $budget_period_id, $lines->[0]{budget_id} , $authcat );
308 foreach my $cell (@$lines) {
309 my $sth = $dbh->prepare( qq|
311 INSERT INTO aqbudgets_planning
312 SET budget_id = ?,
313 budget_period_id = ?,
314 authcat = ?,
315 estimated_amount = ?,
316 authvalue = ? |
318 $sth->execute(
319 $cell->{'budget_id'},
320 $cell->{'budget_period_id'},
321 $cell->{'authcat'},
322 $cell->{'estimated_amount'},
323 $cell->{'authvalue'},
329 # -------------------------------------------------------------------
330 sub GetBudgetSpent {
331 my ($budget_id) = @_;
332 my $dbh = C4::Context->dbh;
333 # unitprice_tax_included should always been set here
334 # we should not need to retrieve ecost_tax_included
335 my $sth = $dbh->prepare(qq|
336 SELECT SUM( COALESCE(unitprice_tax_included, ecost_tax_included) * quantity ) AS sum FROM aqorders
337 WHERE budget_id = ? AND
338 quantityreceived > 0 AND
339 datecancellationprinted IS NULL
341 $sth->execute($budget_id);
342 my $sum = 0 + $sth->fetchrow_array;
344 $sth = $dbh->prepare(qq|
345 SELECT SUM(shipmentcost) AS sum
346 FROM aqinvoices
347 WHERE shipmentcost_budgetid = ?
350 $sth->execute($budget_id);
351 my ($shipmentcost_sum) = $sth->fetchrow_array;
352 $sum += $shipmentcost_sum;
354 my $adjustments = Koha::Acquisition::Invoice::Adjustments->search({budget_id => $budget_id, closedate => { '!=' => undef } },{ join => 'invoiceid' });
355 while ( my $adj = $adjustments->next ){
356 $sum += $adj->adjustment;
359 return $sum;
362 # -------------------------------------------------------------------
363 sub GetBudgetOrdered {
364 my ($budget_id) = @_;
365 my $dbh = C4::Context->dbh;
366 my $sth = $dbh->prepare(qq|
367 SELECT SUM(ecost_tax_included * quantity) AS sum FROM aqorders
368 WHERE budget_id = ? AND
369 quantityreceived = 0 AND
370 datecancellationprinted IS NULL
372 $sth->execute($budget_id);
373 my $sum = 0 + $sth->fetchrow_array;
375 my $adjustments = Koha::Acquisition::Invoice::Adjustments->search({budget_id => $budget_id, encumber_open => 1, closedate => undef},{ join => 'invoiceid' });
376 while ( my $adj = $adjustments->next ){
377 $sum += $adj->adjustment;
380 return $sum;
383 =head2 GetBudgetName
385 my $budget_name = &GetBudgetName($budget_id);
387 get the budget_name for a given budget_id
389 =cut
391 sub GetBudgetName {
392 my ( $budget_id ) = @_;
393 my $dbh = C4::Context->dbh;
394 my $sth = $dbh->prepare(
396 SELECT budget_name
397 FROM aqbudgets
398 WHERE budget_id = ?
401 $sth->execute($budget_id);
402 return $sth->fetchrow_array;
405 =head2 GetBudgetAuthCats
407 my $auth_cats = &GetBudgetAuthCats($budget_period_id);
409 Return the list of authcat for a given budget_period_id
411 =cut
413 sub GetBudgetAuthCats {
414 my ($budget_period_id) = shift;
415 # now, populate the auth_cats_loop used in the budget planning button
416 # we must retrieve all auth values used by at least one budget
417 my $dbh = C4::Context->dbh;
418 my $sth=$dbh->prepare("SELECT sort1_authcat,sort2_authcat FROM aqbudgets WHERE budget_period_id=?");
419 $sth->execute($budget_period_id);
420 my %authcats;
421 while (my ($sort1_authcat,$sort2_authcat) = $sth->fetchrow) {
422 $authcats{$sort1_authcat}=1 if $sort1_authcat;
423 $authcats{$sort2_authcat}=1 if $sort2_authcat;
425 return [ sort keys %authcats ];
428 # -------------------------------------------------------------------
429 sub GetBudgetPeriods {
430 my ($filters,$orderby) = @_;
432 my $rs = Koha::Database->new()->schema->resultset('Aqbudgetperiod');
433 $rs = $rs->search( $filters, { order_by => $orderby } );
434 $rs->result_class('DBIx::Class::ResultClass::HashRefInflator');
435 return [ $rs->all ];
437 # -------------------------------------------------------------------
438 sub GetBudgetPeriod {
439 my ($budget_period_id) = @_;
440 my $dbh = C4::Context->dbh;
441 ## $total = number of records linked to the record that must be deleted
442 my $total = 0;
443 ## get information about the record that will be deleted
444 my $sth;
445 if ($budget_period_id) {
446 $sth = $dbh->prepare( qq|
447 SELECT *
448 FROM aqbudgetperiods
449 WHERE budget_period_id=? |
451 $sth->execute($budget_period_id);
452 } else { # ACTIVE BUDGET
453 $sth = $dbh->prepare(qq|
454 SELECT *
455 FROM aqbudgetperiods
456 WHERE budget_period_active=1 |
458 $sth->execute();
460 my $data = $sth->fetchrow_hashref;
461 return $data;
464 sub DelBudgetPeriod{
465 my ($budget_period_id) = @_;
466 my $dbh = C4::Context->dbh;
467 ; ## $total = number of records linked to the record that must be deleted
468 my $total = 0;
470 ## get information about the record that will be deleted
471 my $sth = $dbh->prepare(qq|
472 DELETE
473 FROM aqbudgetperiods
474 WHERE budget_period_id=? |
476 return $sth->execute($budget_period_id);
479 # -------------------------------------------------------------------
480 sub ModBudgetPeriod {
481 my ($budget_period) = @_;
482 my $result = Koha::Database->new()->schema->resultset('Aqbudgetperiod')->find($budget_period);
483 return unless($result);
485 $result = $result->update($budget_period);
486 return $result->in_storage;
489 # -------------------------------------------------------------------
490 sub GetBudgetHierarchy {
491 my ( $budget_period_id, $branchcode, $owner ) = @_;
492 my @bind_params;
493 my $dbh = C4::Context->dbh;
494 my $query = qq|
495 SELECT aqbudgets.*, aqbudgetperiods.budget_period_active, aqbudgetperiods.budget_period_description,
496 b.firstname as budget_owner_firstname, b.surname as budget_owner_surname, b.borrowernumber as budget_owner_borrowernumber
497 FROM aqbudgets
498 LEFT JOIN borrowers b on b.borrowernumber = aqbudgets.budget_owner_id
499 JOIN aqbudgetperiods USING (budget_period_id)|;
501 my @where_strings;
502 # show only period X if requested
503 if ($budget_period_id) {
504 push @where_strings," aqbudgets.budget_period_id = ?";
505 push @bind_params, $budget_period_id;
507 # show only budgets owned by me, my branch or everyone
508 if ($owner) {
509 if ($branchcode) {
510 push @where_strings,
511 qq{ (budget_owner_id = ? OR budget_branchcode = ? OR ((budget_branchcode IS NULL or budget_branchcode="") AND (budget_owner_id IS NULL OR budget_owner_id="")))};
512 push @bind_params, ( $owner, $branchcode );
513 } else {
514 push @where_strings, ' (budget_owner_id = ? OR budget_owner_id IS NULL or budget_owner_id ="") ';
515 push @bind_params, $owner;
517 } else {
518 if ($branchcode) {
519 push @where_strings," (budget_branchcode =? or budget_branchcode is NULL OR budget_branchcode='')";
520 push @bind_params, $branchcode;
523 $query.=" WHERE ".join(' AND ', @where_strings) if @where_strings;
524 $debug && warn $query,join(",",@bind_params);
525 my $sth = $dbh->prepare($query);
526 $sth->execute(@bind_params);
528 my %links;
529 # create hash with budget_id has key
530 while ( my $data = $sth->fetchrow_hashref ) {
531 $links{ $data->{'budget_id'} } = $data;
534 # link child to parent
535 my @first_parents;
536 foreach my $budget ( sort { $a->{budget_code} cmp $b->{budget_code} } values %links ) {
537 my $child = $links{$budget->{budget_id}};
538 if ( $child->{'budget_parent_id'} ) {
539 my $parent = $links{ $child->{'budget_parent_id'} };
540 if ($parent) {
541 unless ( $parent->{'children'} ) {
542 # init child arrayref
543 $parent->{'children'} = [];
545 # add as child
546 push @{ $parent->{'children'} }, $child;
548 } else {
549 push @first_parents, $child;
553 my @sort = ();
554 foreach my $first_parent (@first_parents) {
555 _add_budget_children(\@sort, $first_parent, 0);
558 # Get all the budgets totals in as few queries as possible
559 my $hr_budget_spent = $dbh->selectall_hashref(q|
560 SELECT aqorders.budget_id, aqbudgets.budget_parent_id,
561 SUM( COALESCE(unitprice_tax_included, ecost_tax_included) * quantity ) AS budget_spent
562 FROM aqorders JOIN aqbudgets USING (budget_id)
563 WHERE quantityreceived > 0 AND datecancellationprinted IS NULL
564 GROUP BY budget_id, budget_parent_id
565 |, 'budget_id');
566 my $hr_budget_ordered = $dbh->selectall_hashref(q|
567 SELECT aqorders.budget_id, aqbudgets.budget_parent_id,
568 SUM(ecost_tax_included * quantity) AS budget_ordered
569 FROM aqorders JOIN aqbudgets USING (budget_id)
570 WHERE quantityreceived = 0 AND datecancellationprinted IS NULL
571 GROUP BY budget_id, budget_parent_id
572 |, 'budget_id');
573 my $hr_budget_spent_shipment = $dbh->selectall_hashref(q|
574 SELECT shipmentcost_budgetid as budget_id,
575 SUM(shipmentcost) as shipmentcost
576 FROM aqinvoices
577 WHERE closedate IS NOT NULL
578 GROUP BY shipmentcost_budgetid
579 |, 'budget_id');
580 my $hr_budget_ordered_shipment = $dbh->selectall_hashref(q|
581 SELECT shipmentcost_budgetid as budget_id,
582 SUM(shipmentcost) as shipmentcost
583 FROM aqinvoices
584 WHERE closedate IS NULL
585 GROUP BY shipmentcost_budgetid
586 |, 'budget_id');
587 my $hr_budget_spent_adjustment = $dbh->selectall_hashref(q|
588 SELECT budget_id,
589 SUM(adjustment) as adjustments
590 FROM aqinvoice_adjustments
591 JOIN aqinvoices USING (invoiceid)
592 WHERE closedate IS NOT NULL
593 GROUP BY budget_id
594 |, 'budget_id');
595 my $hr_budget_ordered_adjustment = $dbh->selectall_hashref(q|
596 SELECT budget_id,
597 SUM(adjustment) as adjustments
598 FROM aqinvoice_adjustments
599 JOIN aqinvoices USING (invoiceid)
600 WHERE closedate IS NULL AND encumber_open = 1
601 GROUP BY budget_id
602 |, 'budget_id');
605 foreach my $budget (@sort) {
606 if ( not defined $budget->{budget_parent_id} ) {
607 _recursiveAdd( $budget, undef, $hr_budget_spent, $hr_budget_spent_shipment, $hr_budget_ordered, $hr_budget_ordered_shipment, $hr_budget_spent_adjustment, $hr_budget_ordered_adjustment );
610 return \@sort;
613 sub _recursiveAdd {
614 my ($budget, $parent, $hr_budget_spent, $hr_budget_spent_shipment, $hr_budget_ordered, $hr_budget_ordered_shipment, $hr_budget_spent_adjustment, $hr_budget_ordered_adjustment ) = @_;
616 foreach my $child (@{$budget->{children}}){
617 _recursiveAdd($child, $budget, $hr_budget_spent, $hr_budget_spent_shipment, $hr_budget_ordered, $hr_budget_ordered_shipment, $hr_budget_spent_adjustment, $hr_budget_ordered_adjustment );
620 $budget->{budget_spent} += $hr_budget_spent->{$budget->{budget_id}}->{budget_spent};
621 $budget->{budget_spent} += $hr_budget_spent_shipment->{$budget->{budget_id}}->{shipmentcost};
622 $budget->{budget_spent} += $hr_budget_spent_adjustment->{$budget->{budget_id}}->{adjustments};
623 $budget->{budget_ordered} += $hr_budget_ordered->{$budget->{budget_id}}->{budget_ordered};
624 $budget->{budget_ordered} += $hr_budget_ordered_shipment->{$budget->{budget_id}}->{shipmentcost};
625 $budget->{budget_ordered} += $hr_budget_ordered_adjustment->{$budget->{budget_id}}->{adjustments};
627 $budget->{total_spent} += $budget->{budget_spent};
628 $budget->{total_ordered} += $budget->{budget_ordered};
630 if ($parent) {
631 $parent->{total_spent} += $budget->{total_spent};
632 $parent->{total_ordered} += $budget->{total_ordered};
636 # Recursive method to add a budget and its chidren to an array
637 sub _add_budget_children {
638 my $res = shift;
639 my $budget = shift;
640 $budget->{budget_level} = shift;
641 push @$res, $budget;
642 my $children = $budget->{'children'} || [];
643 return unless @$children; # break recursivity
644 foreach my $child (@$children) {
645 _add_budget_children($res, $child, $budget->{budget_level} + 1);
649 # -------------------------------------------------------------------
651 sub AddBudget {
652 my ($budget) = @_;
653 return unless ($budget);
655 undef $budget->{budget_encumb} if $budget->{budget_encumb} eq '';
656 undef $budget->{budget_owner_id} if $budget->{budget_owner_id} eq '';
657 my $resultset = Koha::Database->new()->schema->resultset('Aqbudget');
658 return $resultset->create($budget)->id;
661 # -------------------------------------------------------------------
662 sub ModBudget {
663 my ($budget) = @_;
664 my $result = Koha::Database->new()->schema->resultset('Aqbudget')->find($budget);
665 return unless($result);
667 undef $budget->{budget_encumb} if $budget->{budget_encumb} eq '';
668 undef $budget->{budget_owner_id} if $budget->{budget_owner_id} eq '';
669 $result = $result->update($budget);
670 return $result->in_storage;
673 # -------------------------------------------------------------------
674 sub DelBudget {
675 my ($budget_id) = @_;
676 my $dbh = C4::Context->dbh;
677 my $sth = $dbh->prepare("delete from aqbudgets where budget_id=?");
678 my $rc = $sth->execute($budget_id);
679 return $rc;
683 # -------------------------------------------------------------------
685 =head2 GetBudget
687 &GetBudget($budget_id);
689 get a specific budget
691 =cut
693 sub GetBudget {
694 my ( $budget_id ) = @_;
695 my $dbh = C4::Context->dbh;
696 my $query = "
697 SELECT *
698 FROM aqbudgets
699 WHERE budget_id=?
701 my $sth = $dbh->prepare($query);
702 $sth->execute( $budget_id );
703 my $result = $sth->fetchrow_hashref;
704 return $result;
707 # -------------------------------------------------------------------
709 =head2 GetBudgetByOrderNumber
711 &GetBudgetByOrderNumber($ordernumber);
713 get a specific budget by order number
715 =cut
717 sub GetBudgetByOrderNumber {
718 my ( $ordernumber ) = @_;
719 my $dbh = C4::Context->dbh;
720 my $query = "
721 SELECT aqbudgets.*
722 FROM aqbudgets, aqorders
723 WHERE ordernumber=?
724 AND aqorders.budget_id = aqbudgets.budget_id
726 my $sth = $dbh->prepare($query);
727 $sth->execute( $ordernumber );
728 my $result = $sth->fetchrow_hashref;
729 return $result;
732 =head2 GetBudgetReport
734 &GetBudgetReport( [$budget_id] );
736 Get all orders for a specific budget, without cancelled orders.
738 Returns an array of hashrefs.
740 =cut
742 # --------------------------------------------------------------------
743 sub GetBudgetReport {
744 my ( $budget_id ) = @_;
745 my $dbh = C4::Context->dbh;
746 my $query = '
747 SELECT o.*, b.budget_name
748 FROM aqbudgets b
749 INNER JOIN aqorders o
750 ON b.budget_id = o.budget_id
751 WHERE b.budget_id=?
752 AND (o.orderstatus != "cancelled")
753 ORDER BY b.budget_name';
755 my $sth = $dbh->prepare($query);
756 $sth->execute( $budget_id );
758 my @results = ();
759 while ( my $data = $sth->fetchrow_hashref ) {
760 push( @results, $data );
762 return @results;
765 =head2 GetBudgetsByActivity
767 &GetBudgetsByActivity( $budget_period_active );
769 Get all active or inactive budgets, depending of the value
770 of the parameter.
772 1 = active
773 0 = inactive
775 =cut
777 # --------------------------------------------------------------------
778 sub GetBudgetsByActivity {
779 my ( $budget_period_active ) = @_;
780 my $dbh = C4::Context->dbh;
781 my $query = "
782 SELECT DISTINCT b.*
783 FROM aqbudgetperiods bp
784 INNER JOIN aqbudgets b
785 ON bp.budget_period_id = b.budget_period_id
786 WHERE bp.budget_period_active=?
788 my $sth = $dbh->prepare($query);
789 $sth->execute( $budget_period_active );
790 my @results = ();
791 while ( my $data = $sth->fetchrow_hashref ) {
792 push( @results, $data );
794 return @results;
796 # --------------------------------------------------------------------
798 =head2 GetBudgetsReport
800 &GetBudgetsReport( [$activity] );
802 Get all but cancelled orders for all funds.
804 If the optionnal activity parameter is passed, returns orders for active/inactive budgets only.
806 active = 1
807 inactive = 0
809 Returns an array of hashrefs.
811 =cut
813 sub GetBudgetsReport {
814 my ($activity) = @_;
815 my $dbh = C4::Context->dbh;
816 my $query = '
817 SELECT o.*, b.budget_name
818 FROM aqbudgetperiods bp
819 INNER JOIN aqbudgets b
820 ON bp.budget_period_id = b.budget_period_id
821 INNER JOIN aqorders o
822 ON b.budget_id = o.budget_id ';
823 if($activity ne ''){
824 $query .= 'WHERE bp.budget_period_active=? ';
826 $query .= 'AND (o.orderstatus != "cancelled")
827 ORDER BY b.budget_name';
829 my $sth = $dbh->prepare($query);
830 if($activity ne ''){
831 $sth->execute($activity);
833 else{
834 $sth->execute;
836 my @results = ();
837 while ( my $data = $sth->fetchrow_hashref ) {
838 push( @results, $data );
840 return @results;
843 =head2 GetBudgetByCode
845 my $budget = &GetBudgetByCode($budget_code);
847 Retrieve all aqbudgets fields as a hashref for the budget that has
848 given budget_code
850 =cut
852 sub GetBudgetByCode {
853 my ( $budget_code ) = @_;
855 my $dbh = C4::Context->dbh;
856 my $query = qq{
857 SELECT aqbudgets.*
858 FROM aqbudgets
859 JOIN aqbudgetperiods USING (budget_period_id)
860 WHERE budget_code = ?
861 ORDER BY budget_period_active DESC, budget_id DESC
862 LIMIT 1
864 my $sth = $dbh->prepare( $query );
865 $sth->execute( $budget_code );
866 return $sth->fetchrow_hashref;
869 =head2 GetBudgetHierarchySpent
871 my $spent = GetBudgetHierarchySpent( $budget_id );
873 Gets the total spent of the level and sublevels of $budget_id
875 =cut
877 sub GetBudgetHierarchySpent {
878 my ( $budget_id ) = @_;
879 my $dbh = C4::Context->dbh;
880 my $children_ids = $dbh->selectcol_arrayref(q|
881 SELECT budget_id
882 FROM aqbudgets
883 WHERE budget_parent_id = ?
884 |, {}, $budget_id );
886 my $total_spent = GetBudgetSpent( $budget_id );
887 for my $child_id ( @$children_ids ) {
888 $total_spent += GetBudgetHierarchySpent( $child_id );
890 return $total_spent;
893 =head2 GetBudgetHierarchyOrdered
895 my $ordered = GetBudgetHierarchyOrdered( $budget_id );
897 Gets the total ordered of the level and sublevels of $budget_id
899 =cut
901 sub GetBudgetHierarchyOrdered {
902 my ( $budget_id ) = @_;
903 my $dbh = C4::Context->dbh;
904 my $children_ids = $dbh->selectcol_arrayref(q|
905 SELECT budget_id
906 FROM aqbudgets
907 WHERE budget_parent_id = ?
908 |, {}, $budget_id );
910 my $total_ordered = GetBudgetOrdered( $budget_id );
911 for my $child_id ( @$children_ids ) {
912 $total_ordered += GetBudgetHierarchyOrdered( $child_id );
914 return $total_ordered;
917 =head2 GetBudgets
919 &GetBudgets($filter, $order_by);
921 gets all budgets
923 =cut
925 # -------------------------------------------------------------------
926 sub GetBudgets {
927 my ($filters, $orderby) = @_;
928 $orderby = 'budget_name' unless($orderby);
930 my $rs = Koha::Database->new()->schema->resultset('Aqbudget');
931 $rs = $rs->search( $filters, { order_by => $orderby } );
932 $rs->result_class('DBIx::Class::ResultClass::HashRefInflator');
933 return [ $rs->all ];
936 =head2 GetBudgetUsers
938 my @borrowernumbers = &GetBudgetUsers($budget_id);
940 Return the list of borrowernumbers linked to a budget
942 =cut
944 sub GetBudgetUsers {
945 my ($budget_id) = @_;
947 my $dbh = C4::Context->dbh;
948 my $query = qq{
949 SELECT borrowernumber
950 FROM aqbudgetborrowers
951 WHERE budget_id = ?
953 my $sth = $dbh->prepare($query);
954 $sth->execute($budget_id);
956 my @borrowernumbers;
957 while (my ($borrowernumber) = $sth->fetchrow_array) {
958 push @borrowernumbers, $borrowernumber
961 return @borrowernumbers;
964 =head2 ModBudgetUsers
966 &ModBudgetUsers($budget_id, @borrowernumbers);
968 Modify the list of borrowernumbers linked to a budget
970 =cut
972 sub ModBudgetUsers {
973 my ($budget_id, @budget_users_id) = @_;
975 return unless $budget_id;
977 my $dbh = C4::Context->dbh;
978 my $query = "DELETE FROM aqbudgetborrowers WHERE budget_id = ?";
979 my $sth = $dbh->prepare($query);
980 $sth->execute($budget_id);
982 $query = qq{
983 INSERT INTO aqbudgetborrowers (budget_id, borrowernumber)
984 VALUES (?,?)
986 $sth = $dbh->prepare($query);
987 foreach my $borrowernumber (@budget_users_id) {
988 next unless $borrowernumber;
989 $sth->execute($budget_id, $borrowernumber);
993 sub CanUserUseBudget {
994 my ($borrower, $budget, $userflags) = @_;
996 if (not ref $borrower) {
997 $borrower = Koha::Patrons->find( $borrower );
998 return 0 unless $borrower;
999 $borrower = $borrower->unblessed;
1001 if (not ref $budget) {
1002 $budget = GetBudget($budget);
1005 return 0 unless ($borrower and $budget);
1007 if (not defined $userflags) {
1008 $userflags = C4::Auth::getuserflags($borrower->{flags},
1009 $borrower->{userid});
1012 unless ($userflags->{superlibrarian}
1013 || (ref $userflags->{acquisition}
1014 && $userflags->{acquisition}->{budget_manage_all})
1015 || (!ref $userflags->{acquisition} && $userflags->{acquisition}))
1017 if (not exists $userflags->{acquisition}) {
1018 return 0;
1021 if (!ref $userflags->{acquisition} && !$userflags->{acquisition}) {
1022 return 0;
1025 # Budget restricted to owner
1026 if ( $budget->{budget_permission} == 1 ) {
1027 if ( $budget->{budget_owner_id}
1028 and $budget->{budget_owner_id} != $borrower->{borrowernumber} )
1030 return 0;
1034 # Budget restricted to owner, users and library
1035 elsif ( $budget->{budget_permission} == 2 ) {
1036 my @budget_users = GetBudgetUsers( $budget->{budget_id} );
1038 if (
1040 $budget->{budget_owner_id}
1041 and $budget->{budget_owner_id} !=
1042 $borrower->{borrowernumber}
1043 or not $budget->{budget_owner_id}
1045 and ( 0 == grep { $borrower->{borrowernumber} == $_ }
1046 @budget_users )
1047 and defined $budget->{budget_branchcode}
1048 and $budget->{budget_branchcode} ne
1049 C4::Context->userenv->{branch}
1052 return 0;
1056 # Budget restricted to owner and users
1057 elsif ( $budget->{budget_permission} == 3 ) {
1058 my @budget_users = GetBudgetUsers( $budget->{budget_id} );
1059 if (
1061 $budget->{budget_owner_id}
1062 and $budget->{budget_owner_id} !=
1063 $borrower->{borrowernumber}
1064 or not $budget->{budget_owner_id}
1066 and ( 0 == grep { $borrower->{borrowernumber} == $_ }
1067 @budget_users )
1070 return 0;
1075 return 1;
1078 sub CanUserModifyBudget {
1079 my ($borrower, $budget, $userflags) = @_;
1081 if (not ref $borrower) {
1082 $borrower = Koha::Patrons->find( $borrower );
1083 return 0 unless $borrower;
1084 $borrower = $borrower->unblessed;
1086 if (not ref $budget) {
1087 $budget = GetBudget($budget);
1090 return 0 unless ($borrower and $budget);
1092 if (not defined $userflags) {
1093 $userflags = C4::Auth::getuserflags($borrower->{flags},
1094 $borrower->{userid});
1097 unless ($userflags->{superlibrarian}
1098 || (ref $userflags->{acquisition}
1099 && $userflags->{acquisition}->{budget_manage_all})
1100 || (!ref $userflags->{acquisition} && $userflags->{acquisition}))
1102 if (!CanUserUseBudget($borrower, $budget, $userflags)) {
1103 return 0;
1106 if (ref $userflags->{acquisition}
1107 && !$userflags->{acquisition}->{budget_modify}) {
1108 return 0;
1112 return 1;
1115 sub _round {
1116 my ($value, $increment) = @_;
1118 if ($increment && $increment != 0) {
1119 $value = int($value / $increment) * $increment;
1122 return $value;
1125 =head2 CloneBudgetPeriod
1127 my $new_budget_period_id = CloneBudgetPeriod({
1128 budget_period_id => $budget_period_id,
1129 budget_period_startdate => $budget_period_startdate,
1130 budget_period_enddate => $budget_period_enddate,
1131 mark_original_budget_as_inactive => 1n
1132 reset_all_budgets => 1,
1135 Clone a budget period with all budgets.
1136 If the mark_origin_budget_as_inactive is set (0 by default),
1137 the original budget will be marked as inactive.
1139 If the reset_all_budgets is set (0 by default), all budget (fund)
1140 amounts will be reset.
1142 =cut
1144 sub CloneBudgetPeriod {
1145 my ($params) = @_;
1146 my $budget_period_id = $params->{budget_period_id};
1147 my $budget_period_startdate = $params->{budget_period_startdate};
1148 my $budget_period_enddate = $params->{budget_period_enddate};
1149 my $budget_period_description = $params->{budget_period_description};
1150 my $amount_change_percentage = $params->{amount_change_percentage};
1151 my $amount_change_round_increment = $params->{amount_change_round_increment};
1152 my $mark_original_budget_as_inactive =
1153 $params->{mark_original_budget_as_inactive} || 0;
1154 my $reset_all_budgets = $params->{reset_all_budgets} || 0;
1156 my $budget_period = GetBudgetPeriod($budget_period_id);
1158 $budget_period->{budget_period_startdate} = $budget_period_startdate;
1159 $budget_period->{budget_period_enddate} = $budget_period_enddate;
1160 $budget_period->{budget_period_description} = $budget_period_description;
1161 # The new budget (budget_period) should be active by default
1162 $budget_period->{budget_period_active} = 1;
1164 if ($amount_change_percentage) {
1165 my $total = $budget_period->{budget_period_total};
1166 $total += $total * $amount_change_percentage / 100;
1167 $total = _round($total, $amount_change_round_increment);
1168 $budget_period->{budget_period_total} = $total;
1171 my $original_budget_period_id = $budget_period->{budget_period_id};
1172 delete $budget_period->{budget_period_id};
1173 my $new_budget_period_id = AddBudgetPeriod( $budget_period );
1175 my $budgets = GetBudgetHierarchy($budget_period_id);
1176 CloneBudgetHierarchy(
1178 budgets => $budgets,
1179 new_budget_period_id => $new_budget_period_id
1183 if ($mark_original_budget_as_inactive) {
1184 ModBudgetPeriod(
1186 budget_period_id => $budget_period_id,
1187 budget_period_active => 0,
1192 if ( $reset_all_budgets ) {
1193 my $budgets = GetBudgets({ budget_period_id => $new_budget_period_id });
1194 for my $budget ( @$budgets ) {
1195 $budget->{budget_amount} = 0;
1196 ModBudget( $budget );
1198 } elsif ($amount_change_percentage) {
1199 my $budgets = GetBudgets({ budget_period_id => $new_budget_period_id });
1200 for my $budget ( @$budgets ) {
1201 my $amount = $budget->{budget_amount};
1202 $amount += $amount * $amount_change_percentage / 100;
1203 $amount = _round($amount, $amount_change_round_increment);
1204 $budget->{budget_amount} = $amount;
1205 ModBudget( $budget );
1209 return $new_budget_period_id;
1212 =head2 CloneBudgetHierarchy
1214 CloneBudgetHierarchy({
1215 budgets => $budgets,
1216 new_budget_period_id => $new_budget_period_id;
1219 Clone a budget hierarchy.
1221 =cut
1223 sub CloneBudgetHierarchy {
1224 my ($params) = @_;
1225 my $budgets = $params->{budgets};
1226 my $new_budget_period_id = $params->{new_budget_period_id};
1227 next unless @$budgets or $new_budget_period_id;
1229 my $children_of = $params->{children_of};
1230 my $new_parent_id = $params->{new_parent_id};
1232 my @first_level_budgets =
1233 ( not defined $children_of )
1234 ? map { ( not $_->{budget_parent_id} ) ? $_ : () } @$budgets
1235 : map { ( $_->{budget_parent_id} == $children_of ) ? $_ : () } @$budgets;
1237 # get only the columns of aqbudgets
1238 my @columns = Koha::Database->new()->schema->source('Aqbudget')->columns;
1240 for my $budget ( sort { $a->{budget_id} <=> $b->{budget_id} }
1241 @first_level_budgets )
1244 my $tidy_budget =
1245 { map { join( ' ', @columns ) =~ /$_/ ? ( $_ => $budget->{$_} ) : () }
1246 keys %$budget };
1247 delete $tidy_budget->{timestamp};
1248 my $new_budget_id = AddBudget(
1250 %$tidy_budget,
1251 budget_id => undef,
1252 budget_parent_id => $new_parent_id,
1253 budget_period_id => $new_budget_period_id
1256 CloneBudgetHierarchy(
1258 budgets => $budgets,
1259 new_budget_period_id => $new_budget_period_id,
1260 children_of => $budget->{budget_id},
1261 new_parent_id => $new_budget_id
1267 =head2 MoveOrders
1269 my $report = MoveOrders({
1270 from_budget_period_id => $from_budget_period_id,
1271 to_budget_period_id => $to_budget_period_id,
1274 Move orders from one budget period to another.
1276 =cut
1278 sub MoveOrders {
1279 my ($params) = @_;
1280 my $from_budget_period_id = $params->{from_budget_period_id};
1281 my $to_budget_period_id = $params->{to_budget_period_id};
1282 my $move_remaining_unspent = $params->{move_remaining_unspent};
1283 return
1284 if not $from_budget_period_id
1285 or not $to_budget_period_id
1286 or $from_budget_period_id == $to_budget_period_id;
1288 # Can't move orders to an inactive budget (budgetperiod)
1289 my $budget_period = GetBudgetPeriod($to_budget_period_id);
1290 return unless $budget_period->{budget_period_active};
1292 my @report;
1293 my $dbh = C4::Context->dbh;
1294 my $sth_update_aqorders = $dbh->prepare(
1296 UPDATE aqorders
1297 SET budget_id = ?
1298 WHERE ordernumber = ?
1301 my $sth_update_budget_amount = $dbh->prepare(
1303 UPDATE aqbudgets
1304 SET budget_amount = ?
1305 WHERE budget_id = ?
1308 my $from_budgets = GetBudgetHierarchy($from_budget_period_id);
1309 for my $from_budget (@$from_budgets) {
1310 my $new_budget_id = $dbh->selectcol_arrayref(
1312 SELECT budget_id
1313 FROM aqbudgets
1314 WHERE budget_period_id = ?
1315 AND budget_code = ?
1316 |, {}, $to_budget_period_id, $from_budget->{budget_code}
1318 $new_budget_id = $new_budget_id->[0];
1319 my $new_budget = GetBudget( $new_budget_id );
1320 unless ( $new_budget ) {
1321 push @report,
1323 moved => 0,
1324 budget => $from_budget,
1325 error => 'budget_code_not_exists',
1327 next;
1329 my $orders_to_move = C4::Acquisition::SearchOrders(
1331 budget_id => $from_budget->{budget_id},
1332 pending => 1,
1336 my @orders_moved;
1337 for my $order (@$orders_to_move) {
1338 $sth_update_aqorders->execute( $new_budget->{budget_id}, $order->{ordernumber} );
1339 push @orders_moved, $order;
1342 my $unspent_moved = 0;
1343 if ($move_remaining_unspent) {
1344 my $spent = GetBudgetHierarchySpent( $from_budget->{budget_id} );
1345 my $unspent = $from_budget->{budget_amount} - $spent;
1346 my $new_budget_amount = $new_budget->{budget_amount};
1347 if ( $unspent > 0 ) {
1348 $new_budget_amount += $unspent;
1349 $unspent_moved = $unspent;
1351 $new_budget->{budget_amount} = $new_budget_amount;
1352 $sth_update_budget_amount->execute( $new_budget_amount,
1353 $new_budget->{budget_id} );
1356 push @report,
1358 budget => $new_budget,
1359 orders_moved => \@orders_moved,
1360 moved => 1,
1361 unspent_moved => $unspent_moved,
1364 return \@report;
1367 END { } # module clean-up code here (global destructor)
1370 __END__
1372 =head1 AUTHOR
1374 Koha Development Team <http://koha-community.org/>
1376 =cut