Bug 20944: Add route to add credits to a patron's account
[koha.git] / C4 / Budgets.pm
blobcaacd7cd9c2a89e137bd68ed6871b2d6f9912554
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 my $resultset = Koha::Database->new()->schema->resultset('Aqbudgetperiod');
138 return $resultset->create($budgetperiod)->id;
140 # -------------------------------------------------------------------
141 sub GetPeriodsCount {
142 my $dbh = C4::Context->dbh;
143 my $sth = $dbh->prepare("
144 SELECT COUNT(*) AS sum FROM aqbudgetperiods ");
145 $sth->execute();
146 my $res = $sth->fetchrow_hashref;
147 return $res->{'sum'};
150 # -------------------------------------------------------------------
151 sub CheckBudgetParent {
152 my ( $new_parent, $budget ) = @_;
153 my $new_parent_id = $new_parent->{'budget_id'};
154 my $budget_id = $budget->{'budget_id'};
155 my $dbh = C4::Context->dbh;
156 my $parent_id_tmp = $new_parent_id;
158 # check new-parent is not a child (or a child's child ;)
159 my $sth = $dbh->prepare(qq|
160 SELECT budget_parent_id FROM
161 aqbudgets where budget_id = ? | );
162 while (1) {
163 $sth->execute($parent_id_tmp);
164 my $res = $sth->fetchrow_hashref;
165 if ( $res->{'budget_parent_id'} == $budget_id ) {
166 return 1;
168 if ( not defined $res->{'budget_parent_id'} ) {
169 return 0;
171 $parent_id_tmp = $res->{'budget_parent_id'};
175 # -------------------------------------------------------------------
176 sub BudgetHasChildren {
177 my ( $budget_id ) = @_;
178 my $dbh = C4::Context->dbh;
179 my $sth = $dbh->prepare(qq|
180 SELECT count(*) as sum FROM aqbudgets
181 WHERE budget_parent_id = ? | );
182 $sth->execute( $budget_id );
183 my $sum = $sth->fetchrow_hashref;
184 return $sum->{'sum'};
187 sub GetBudgetChildren {
188 my ( $budget_id ) = @_;
189 my $dbh = C4::Context->dbh;
190 return $dbh->selectall_arrayref(q|
191 SELECT * FROM aqbudgets
192 WHERE budget_parent_id = ?
193 |, { Slice => {} }, $budget_id );
196 sub SetOwnerToFundHierarchy {
197 my ( $budget_id, $borrowernumber ) = @_;
199 my $budget = GetBudget( $budget_id );
200 $budget->{budget_owner_id} = $borrowernumber;
201 ModBudget( $budget );
202 my $children = GetBudgetChildren( $budget_id );
203 for my $child ( @$children ) {
204 SetOwnerToFundHierarchy( $child->{budget_id}, $borrowernumber );
208 # -------------------------------------------------------------------
209 sub GetBudgetsPlanCell {
210 my ( $cell, $period, $budget ) = @_;
211 my ($actual, $sth);
212 my $dbh = C4::Context->dbh;
213 if ( $cell->{'authcat'} eq 'MONTHS' ) {
214 # get the actual amount
215 $sth = $dbh->prepare( qq|
217 SELECT SUM(ecost_tax_included) AS actual FROM aqorders
218 WHERE budget_id = ? AND
219 entrydate like "$cell->{'authvalue'}%" |
221 $sth->execute( $cell->{'budget_id'} );
222 } elsif ( $cell->{'authcat'} eq 'BRANCHES' ) {
223 # get the actual amount
224 $sth = $dbh->prepare( qq|
226 SELECT SUM(ecost_tax_included) FROM aqorders
227 LEFT JOIN aqorders_items
228 ON (aqorders.ordernumber = aqorders_items.ordernumber)
229 LEFT JOIN items
230 ON (aqorders_items.itemnumber = items.itemnumber)
231 WHERE budget_id = ? AND homebranch = ? | );
233 $sth->execute( $cell->{'budget_id'}, $cell->{'authvalue'} );
234 } elsif ( $cell->{'authcat'} eq 'ITEMTYPES' ) {
235 # get the actual amount
236 $sth = $dbh->prepare( qq|
238 SELECT SUM( ecost_tax_included * quantity) AS actual
239 FROM aqorders JOIN biblioitems
240 ON (biblioitems.biblionumber = aqorders.biblionumber )
241 WHERE aqorders.budget_id = ? and itemtype = ? |
243 $sth->execute( $cell->{'budget_id'},
244 $cell->{'authvalue'} );
246 # ELSE GENERIC ORDERS SORT1/SORT2 STAT COUNT.
247 else {
248 # get the actual amount
249 $sth = $dbh->prepare( qq|
251 SELECT SUM(ecost_tax_included * quantity) AS actual
252 FROM aqorders
253 JOIN aqbudgets ON (aqbudgets.budget_id = aqorders.budget_id )
254 WHERE aqorders.budget_id = ? AND
255 ((aqbudgets.sort1_authcat = ? AND sort1 =?) OR
256 (aqbudgets.sort2_authcat = ? AND sort2 =?)) |
258 $sth->execute( $cell->{'budget_id'},
259 $budget->{'sort1_authcat'},
260 $cell->{'authvalue'},
261 $budget->{'sort2_authcat'},
262 $cell->{'authvalue'}
265 $actual = $sth->fetchrow_array;
267 # get the estimated amount
268 $sth = $dbh->prepare( qq|
270 SELECT estimated_amount AS estimated, display FROM aqbudgets_planning
271 WHERE budget_period_id = ? AND
272 budget_id = ? AND
273 authvalue = ? AND
274 authcat = ? |
276 $sth->execute( $cell->{'budget_period_id'},
277 $cell->{'budget_id'},
278 $cell->{'authvalue'},
279 $cell->{'authcat'},
283 my $res = $sth->fetchrow_hashref;
284 # my $display = $res->{'display'};
285 my $estimated = $res->{'estimated'};
288 return $actual, $estimated;
291 # -------------------------------------------------------------------
292 sub ModBudgetPlan {
293 my ( $budget_plan, $budget_period_id, $authcat ) = @_;
294 my $dbh = C4::Context->dbh;
295 foreach my $buds (@$budget_plan) {
296 my $lines = $buds->{lines};
297 my $sth = $dbh->prepare( qq|
298 DELETE FROM aqbudgets_planning
299 WHERE budget_period_id = ? AND
300 budget_id = ? AND
301 authcat = ? |
303 #delete a aqplan line of cells, then insert new cells,
304 # these could be UPDATES rather than DEL/INSERTS...
305 $sth->execute( $budget_period_id, $lines->[0]{budget_id} , $authcat );
307 foreach my $cell (@$lines) {
308 my $sth = $dbh->prepare( qq|
310 INSERT INTO aqbudgets_planning
311 SET budget_id = ?,
312 budget_period_id = ?,
313 authcat = ?,
314 estimated_amount = ?,
315 authvalue = ? |
317 $sth->execute(
318 $cell->{'budget_id'},
319 $cell->{'budget_period_id'},
320 $cell->{'authcat'},
321 $cell->{'estimated_amount'},
322 $cell->{'authvalue'},
328 # -------------------------------------------------------------------
329 sub GetBudgetSpent {
330 my ($budget_id) = @_;
331 my $dbh = C4::Context->dbh;
332 # unitprice_tax_included should always been set here
333 # we should not need to retrieve ecost_tax_included
334 my $sth = $dbh->prepare(qq|
335 SELECT SUM( COALESCE(unitprice_tax_included, ecost_tax_included) * quantity ) AS sum FROM aqorders
336 WHERE budget_id = ? AND
337 quantityreceived > 0 AND
338 datecancellationprinted IS NULL
340 $sth->execute($budget_id);
341 my $sum = 0 + $sth->fetchrow_array;
343 $sth = $dbh->prepare(qq|
344 SELECT SUM(shipmentcost) AS sum
345 FROM aqinvoices
346 WHERE shipmentcost_budgetid = ?
349 $sth->execute($budget_id);
350 my ($shipmentcost_sum) = $sth->fetchrow_array;
351 $sum += $shipmentcost_sum;
353 my $adjustments = Koha::Acquisition::Invoice::Adjustments->search({budget_id => $budget_id, closedate => { '!=' => undef } },{ join => 'invoiceid' });
354 while ( my $adj = $adjustments->next ){
355 $sum += $adj->adjustment;
358 return $sum;
361 # -------------------------------------------------------------------
362 sub GetBudgetOrdered {
363 my ($budget_id) = @_;
364 my $dbh = C4::Context->dbh;
365 my $sth = $dbh->prepare(qq|
366 SELECT SUM(ecost_tax_included * quantity) AS sum FROM aqorders
367 WHERE budget_id = ? AND
368 quantityreceived = 0 AND
369 datecancellationprinted IS NULL
371 $sth->execute($budget_id);
372 my $sum = 0 + $sth->fetchrow_array;
374 my $adjustments = Koha::Acquisition::Invoice::Adjustments->search({budget_id => $budget_id, encumber_open => 1, closedate => undef},{ join => 'invoiceid' });
375 while ( my $adj = $adjustments->next ){
376 $sum += $adj->adjustment;
379 return $sum;
382 =head2 GetBudgetName
384 my $budget_name = &GetBudgetName($budget_id);
386 get the budget_name for a given budget_id
388 =cut
390 sub GetBudgetName {
391 my ( $budget_id ) = @_;
392 my $dbh = C4::Context->dbh;
393 my $sth = $dbh->prepare(
395 SELECT budget_name
396 FROM aqbudgets
397 WHERE budget_id = ?
400 $sth->execute($budget_id);
401 return $sth->fetchrow_array;
404 =head2 GetBudgetAuthCats
406 my $auth_cats = &GetBudgetAuthCats($budget_period_id);
408 Return the list of authcat for a given budget_period_id
410 =cut
412 sub GetBudgetAuthCats {
413 my ($budget_period_id) = shift;
414 # now, populate the auth_cats_loop used in the budget planning button
415 # we must retrieve all auth values used by at least one budget
416 my $dbh = C4::Context->dbh;
417 my $sth=$dbh->prepare("SELECT sort1_authcat,sort2_authcat FROM aqbudgets WHERE budget_period_id=?");
418 $sth->execute($budget_period_id);
419 my %authcats;
420 while (my ($sort1_authcat,$sort2_authcat) = $sth->fetchrow) {
421 $authcats{$sort1_authcat}=1 if $sort1_authcat;
422 $authcats{$sort2_authcat}=1 if $sort2_authcat;
424 return [ sort keys %authcats ];
427 # -------------------------------------------------------------------
428 sub GetBudgetPeriods {
429 my ($filters,$orderby) = @_;
431 my $rs = Koha::Database->new()->schema->resultset('Aqbudgetperiod');
432 $rs = $rs->search( $filters, { order_by => $orderby } );
433 $rs->result_class('DBIx::Class::ResultClass::HashRefInflator');
434 return [ $rs->all ];
436 # -------------------------------------------------------------------
437 sub GetBudgetPeriod {
438 my ($budget_period_id) = @_;
439 my $dbh = C4::Context->dbh;
440 ## $total = number of records linked to the record that must be deleted
441 my $total = 0;
442 ## get information about the record that will be deleted
443 my $sth;
444 if ($budget_period_id) {
445 $sth = $dbh->prepare( qq|
446 SELECT *
447 FROM aqbudgetperiods
448 WHERE budget_period_id=? |
450 $sth->execute($budget_period_id);
451 } else { # ACTIVE BUDGET
452 $sth = $dbh->prepare(qq|
453 SELECT *
454 FROM aqbudgetperiods
455 WHERE budget_period_active=1 |
457 $sth->execute();
459 my $data = $sth->fetchrow_hashref;
460 return $data;
463 sub DelBudgetPeriod{
464 my ($budget_period_id) = @_;
465 my $dbh = C4::Context->dbh;
466 ; ## $total = number of records linked to the record that must be deleted
467 my $total = 0;
469 ## get information about the record that will be deleted
470 my $sth = $dbh->prepare(qq|
471 DELETE
472 FROM aqbudgetperiods
473 WHERE budget_period_id=? |
475 return $sth->execute($budget_period_id);
478 # -------------------------------------------------------------------
479 sub ModBudgetPeriod {
480 my ($budget_period) = @_;
481 my $result = Koha::Database->new()->schema->resultset('Aqbudgetperiod')->find($budget_period);
482 return unless($result);
484 $result = $result->update($budget_period);
485 return $result->in_storage;
488 # -------------------------------------------------------------------
489 sub GetBudgetHierarchy {
490 my ( $budget_period_id, $branchcode, $owner ) = @_;
491 my @bind_params;
492 my $dbh = C4::Context->dbh;
493 my $query = qq|
494 SELECT aqbudgets.*, aqbudgetperiods.budget_period_active, aqbudgetperiods.budget_period_description,
495 b.firstname as budget_owner_firstname, b.surname as budget_owner_surname, b.borrowernumber as budget_owner_borrowernumber
496 FROM aqbudgets
497 LEFT JOIN borrowers b on b.borrowernumber = aqbudgets.budget_owner_id
498 JOIN aqbudgetperiods USING (budget_period_id)|;
500 my @where_strings;
501 # show only period X if requested
502 if ($budget_period_id) {
503 push @where_strings," aqbudgets.budget_period_id = ?";
504 push @bind_params, $budget_period_id;
506 # show only budgets owned by me, my branch or everyone
507 if ($owner) {
508 if ($branchcode) {
509 push @where_strings,
510 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="")))};
511 push @bind_params, ( $owner, $branchcode );
512 } else {
513 push @where_strings, ' (budget_owner_id = ? OR budget_owner_id IS NULL or budget_owner_id ="") ';
514 push @bind_params, $owner;
516 } else {
517 if ($branchcode) {
518 push @where_strings," (budget_branchcode =? or budget_branchcode is NULL OR budget_branchcode='')";
519 push @bind_params, $branchcode;
522 $query.=" WHERE ".join(' AND ', @where_strings) if @where_strings;
523 $debug && warn $query,join(",",@bind_params);
524 my $sth = $dbh->prepare($query);
525 $sth->execute(@bind_params);
527 my %links;
528 # create hash with budget_id has key
529 while ( my $data = $sth->fetchrow_hashref ) {
530 $links{ $data->{'budget_id'} } = $data;
533 # link child to parent
534 my @first_parents;
535 foreach my $budget ( sort { $a->{budget_code} cmp $b->{budget_code} } values %links ) {
536 my $child = $links{$budget->{budget_id}};
537 if ( $child->{'budget_parent_id'} ) {
538 my $parent = $links{ $child->{'budget_parent_id'} };
539 if ($parent) {
540 unless ( $parent->{'children'} ) {
541 # init child arrayref
542 $parent->{'children'} = [];
544 # add as child
545 push @{ $parent->{'children'} }, $child;
547 } else {
548 push @first_parents, $child;
552 my @sort = ();
553 foreach my $first_parent (@first_parents) {
554 _add_budget_children(\@sort, $first_parent, 0);
557 # Get all the budgets totals in as few queries as possible
558 my $hr_budget_spent = $dbh->selectall_hashref(q|
559 SELECT aqorders.budget_id, aqbudgets.budget_parent_id,
560 SUM( COALESCE(unitprice_tax_included, ecost_tax_included) * quantity ) AS budget_spent
561 FROM aqorders JOIN aqbudgets USING (budget_id)
562 WHERE quantityreceived > 0 AND datecancellationprinted IS NULL
563 GROUP BY budget_id
564 |, 'budget_id');
565 my $hr_budget_ordered = $dbh->selectall_hashref(q|
566 SELECT aqorders.budget_id, aqbudgets.budget_parent_id,
567 SUM(ecost_tax_included * quantity) AS budget_ordered
568 FROM aqorders JOIN aqbudgets USING (budget_id)
569 WHERE quantityreceived = 0 AND datecancellationprinted IS NULL
570 GROUP BY budget_id
571 |, 'budget_id');
572 my $hr_budget_spent_shipment = $dbh->selectall_hashref(q|
573 SELECT shipmentcost_budgetid as budget_id,
574 SUM(shipmentcost) as shipmentcost
575 FROM aqinvoices
576 WHERE closedate IS NOT NULL
577 GROUP BY shipmentcost_budgetid
578 |, 'budget_id');
579 my $hr_budget_ordered_shipment = $dbh->selectall_hashref(q|
580 SELECT shipmentcost_budgetid as budget_id,
581 SUM(shipmentcost) as shipmentcost
582 FROM aqinvoices
583 WHERE closedate IS NULL
584 GROUP BY shipmentcost_budgetid
585 |, 'budget_id');
588 foreach my $budget (@sort) {
589 if ( not defined $budget->{budget_parent_id} ) {
590 _recursiveAdd( $budget, undef, $hr_budget_spent, $hr_budget_spent_shipment, $hr_budget_ordered, $hr_budget_ordered_shipment );
593 return \@sort;
596 sub _recursiveAdd {
597 my ($budget, $parent, $hr_budget_spent, $hr_budget_spent_shipment, $hr_budget_ordered, $hr_budget_ordered_shipment ) = @_;
599 foreach my $child (@{$budget->{children}}){
600 _recursiveAdd($child, $budget, $hr_budget_spent, $hr_budget_spent_shipment, $hr_budget_ordered, $hr_budget_ordered_shipment );
603 $budget->{budget_spent} += $hr_budget_spent->{$budget->{budget_id}}->{budget_spent};
604 $budget->{budget_spent} += $hr_budget_spent_shipment->{$budget->{budget_id}}->{shipmentcost};
605 $budget->{budget_ordered} += $hr_budget_ordered->{$budget->{budget_id}}->{budget_ordered};
606 $budget->{budget_ordered} += $hr_budget_ordered_shipment->{$budget->{budget_id}}->{shipmentcost};
608 $budget->{total_spent} += $budget->{budget_spent};
609 $budget->{total_ordered} += $budget->{budget_ordered};
611 if ($parent) {
612 $parent->{total_spent} += $budget->{total_spent};
613 $parent->{total_ordered} += $budget->{total_ordered};
617 # Recursive method to add a budget and its chidren to an array
618 sub _add_budget_children {
619 my $res = shift;
620 my $budget = shift;
621 $budget->{budget_level} = shift;
622 push @$res, $budget;
623 my $children = $budget->{'children'} || [];
624 return unless @$children; # break recursivity
625 foreach my $child (@$children) {
626 _add_budget_children($res, $child, $budget->{budget_level} + 1);
630 # -------------------------------------------------------------------
632 sub AddBudget {
633 my ($budget) = @_;
634 return unless ($budget);
636 my $resultset = Koha::Database->new()->schema->resultset('Aqbudget');
637 return $resultset->create($budget)->id;
640 # -------------------------------------------------------------------
641 sub ModBudget {
642 my ($budget) = @_;
643 my $result = Koha::Database->new()->schema->resultset('Aqbudget')->find($budget);
644 return unless($result);
646 $result = $result->update($budget);
647 return $result->in_storage;
650 # -------------------------------------------------------------------
651 sub DelBudget {
652 my ($budget_id) = @_;
653 my $dbh = C4::Context->dbh;
654 my $sth = $dbh->prepare("delete from aqbudgets where budget_id=?");
655 my $rc = $sth->execute($budget_id);
656 return $rc;
660 # -------------------------------------------------------------------
662 =head2 GetBudget
664 &GetBudget($budget_id);
666 get a specific budget
668 =cut
670 sub GetBudget {
671 my ( $budget_id ) = @_;
672 my $dbh = C4::Context->dbh;
673 my $query = "
674 SELECT *
675 FROM aqbudgets
676 WHERE budget_id=?
678 my $sth = $dbh->prepare($query);
679 $sth->execute( $budget_id );
680 my $result = $sth->fetchrow_hashref;
681 return $result;
684 # -------------------------------------------------------------------
686 =head2 GetBudgetByOrderNumber
688 &GetBudgetByOrderNumber($ordernumber);
690 get a specific budget by order number
692 =cut
694 sub GetBudgetByOrderNumber {
695 my ( $ordernumber ) = @_;
696 my $dbh = C4::Context->dbh;
697 my $query = "
698 SELECT aqbudgets.*
699 FROM aqbudgets, aqorders
700 WHERE ordernumber=?
701 AND aqorders.budget_id = aqbudgets.budget_id
703 my $sth = $dbh->prepare($query);
704 $sth->execute( $ordernumber );
705 my $result = $sth->fetchrow_hashref;
706 return $result;
709 =head2 GetBudgetReport
711 &GetBudgetReport( [$budget_id] );
713 Get all orders for a specific budget, without cancelled orders.
715 Returns an array of hashrefs.
717 =cut
719 # --------------------------------------------------------------------
720 sub GetBudgetReport {
721 my ( $budget_id ) = @_;
722 my $dbh = C4::Context->dbh;
723 my $query = '
724 SELECT o.*, b.budget_name
725 FROM aqbudgets b
726 INNER JOIN aqorders o
727 ON b.budget_id = o.budget_id
728 WHERE b.budget_id=?
729 AND (o.orderstatus != "cancelled")
730 ORDER BY b.budget_name';
732 my $sth = $dbh->prepare($query);
733 $sth->execute( $budget_id );
735 my @results = ();
736 while ( my $data = $sth->fetchrow_hashref ) {
737 push( @results, $data );
739 return @results;
742 =head2 GetBudgetsByActivity
744 &GetBudgetsByActivity( $budget_period_active );
746 Get all active or inactive budgets, depending of the value
747 of the parameter.
749 1 = active
750 0 = inactive
752 =cut
754 # --------------------------------------------------------------------
755 sub GetBudgetsByActivity {
756 my ( $budget_period_active ) = @_;
757 my $dbh = C4::Context->dbh;
758 my $query = "
759 SELECT DISTINCT b.*
760 FROM aqbudgetperiods bp
761 INNER JOIN aqbudgets b
762 ON bp.budget_period_id = b.budget_period_id
763 WHERE bp.budget_period_active=?
765 my $sth = $dbh->prepare($query);
766 $sth->execute( $budget_period_active );
767 my @results = ();
768 while ( my $data = $sth->fetchrow_hashref ) {
769 push( @results, $data );
771 return @results;
773 # --------------------------------------------------------------------
775 =head2 GetBudgetsReport
777 &GetBudgetsReport( [$activity] );
779 Get all but cancelled orders for all funds.
781 If the optionnal activity parameter is passed, returns orders for active/inactive budgets only.
783 active = 1
784 inactive = 0
786 Returns an array of hashrefs.
788 =cut
790 sub GetBudgetsReport {
791 my ($activity) = @_;
792 my $dbh = C4::Context->dbh;
793 my $query = '
794 SELECT o.*, b.budget_name
795 FROM aqbudgetperiods bp
796 INNER JOIN aqbudgets b
797 ON bp.budget_period_id = b.budget_period_id
798 INNER JOIN aqorders o
799 ON b.budget_id = o.budget_id ';
800 if($activity ne ''){
801 $query .= 'WHERE bp.budget_period_active=? ';
803 $query .= 'AND (o.orderstatus != "cancelled")
804 ORDER BY b.budget_name';
806 my $sth = $dbh->prepare($query);
807 if($activity ne ''){
808 $sth->execute($activity);
810 else{
811 $sth->execute;
813 my @results = ();
814 while ( my $data = $sth->fetchrow_hashref ) {
815 push( @results, $data );
817 return @results;
820 =head2 GetBudgetByCode
822 my $budget = &GetBudgetByCode($budget_code);
824 Retrieve all aqbudgets fields as a hashref for the budget that has
825 given budget_code
827 =cut
829 sub GetBudgetByCode {
830 my ( $budget_code ) = @_;
832 my $dbh = C4::Context->dbh;
833 my $query = qq{
834 SELECT aqbudgets.*
835 FROM aqbudgets
836 JOIN aqbudgetperiods USING (budget_period_id)
837 WHERE budget_code = ?
838 ORDER BY budget_period_active DESC, budget_id DESC
839 LIMIT 1
841 my $sth = $dbh->prepare( $query );
842 $sth->execute( $budget_code );
843 return $sth->fetchrow_hashref;
846 =head2 GetBudgetHierarchySpent
848 my $spent = GetBudgetHierarchySpent( $budget_id );
850 Gets the total spent of the level and sublevels of $budget_id
852 =cut
854 sub GetBudgetHierarchySpent {
855 my ( $budget_id ) = @_;
856 my $dbh = C4::Context->dbh;
857 my $children_ids = $dbh->selectcol_arrayref(q|
858 SELECT budget_id
859 FROM aqbudgets
860 WHERE budget_parent_id = ?
861 |, {}, $budget_id );
863 my $total_spent = GetBudgetSpent( $budget_id );
864 for my $child_id ( @$children_ids ) {
865 $total_spent += GetBudgetHierarchySpent( $child_id );
867 return $total_spent;
870 =head2 GetBudgetHierarchyOrdered
872 my $ordered = GetBudgetHierarchyOrdered( $budget_id );
874 Gets the total ordered of the level and sublevels of $budget_id
876 =cut
878 sub GetBudgetHierarchyOrdered {
879 my ( $budget_id ) = @_;
880 my $dbh = C4::Context->dbh;
881 my $children_ids = $dbh->selectcol_arrayref(q|
882 SELECT budget_id
883 FROM aqbudgets
884 WHERE budget_parent_id = ?
885 |, {}, $budget_id );
887 my $total_ordered = GetBudgetOrdered( $budget_id );
888 for my $child_id ( @$children_ids ) {
889 $total_ordered += GetBudgetHierarchyOrdered( $child_id );
891 return $total_ordered;
894 =head2 GetBudgets
896 &GetBudgets($filter, $order_by);
898 gets all budgets
900 =cut
902 # -------------------------------------------------------------------
903 sub GetBudgets {
904 my ($filters, $orderby) = @_;
905 $orderby = 'budget_name' unless($orderby);
907 my $rs = Koha::Database->new()->schema->resultset('Aqbudget');
908 $rs = $rs->search( $filters, { order_by => $orderby } );
909 $rs->result_class('DBIx::Class::ResultClass::HashRefInflator');
910 return [ $rs->all ];
913 =head2 GetBudgetUsers
915 my @borrowernumbers = &GetBudgetUsers($budget_id);
917 Return the list of borrowernumbers linked to a budget
919 =cut
921 sub GetBudgetUsers {
922 my ($budget_id) = @_;
924 my $dbh = C4::Context->dbh;
925 my $query = qq{
926 SELECT borrowernumber
927 FROM aqbudgetborrowers
928 WHERE budget_id = ?
930 my $sth = $dbh->prepare($query);
931 $sth->execute($budget_id);
933 my @borrowernumbers;
934 while (my ($borrowernumber) = $sth->fetchrow_array) {
935 push @borrowernumbers, $borrowernumber
938 return @borrowernumbers;
941 =head2 ModBudgetUsers
943 &ModBudgetUsers($budget_id, @borrowernumbers);
945 Modify the list of borrowernumbers linked to a budget
947 =cut
949 sub ModBudgetUsers {
950 my ($budget_id, @budget_users_id) = @_;
952 return unless $budget_id;
954 my $dbh = C4::Context->dbh;
955 my $query = "DELETE FROM aqbudgetborrowers WHERE budget_id = ?";
956 my $sth = $dbh->prepare($query);
957 $sth->execute($budget_id);
959 $query = qq{
960 INSERT INTO aqbudgetborrowers (budget_id, borrowernumber)
961 VALUES (?,?)
963 $sth = $dbh->prepare($query);
964 foreach my $borrowernumber (@budget_users_id) {
965 next unless $borrowernumber;
966 $sth->execute($budget_id, $borrowernumber);
970 sub CanUserUseBudget {
971 my ($borrower, $budget, $userflags) = @_;
973 if (not ref $borrower) {
974 $borrower = Koha::Patrons->find( $borrower );
975 return 0 unless $borrower;
976 $borrower = $borrower->unblessed;
978 if (not ref $budget) {
979 $budget = GetBudget($budget);
982 return 0 unless ($borrower and $budget);
984 if (not defined $userflags) {
985 $userflags = C4::Auth::getuserflags($borrower->{flags},
986 $borrower->{userid});
989 unless ($userflags->{superlibrarian}
990 || (ref $userflags->{acquisition}
991 && $userflags->{acquisition}->{budget_manage_all})
992 || (!ref $userflags->{acquisition} && $userflags->{acquisition}))
994 if (not exists $userflags->{acquisition}) {
995 return 0;
998 if (!ref $userflags->{acquisition} && !$userflags->{acquisition}) {
999 return 0;
1002 # Budget restricted to owner
1003 if ( $budget->{budget_permission} == 1 ) {
1004 if ( $budget->{budget_owner_id}
1005 and $budget->{budget_owner_id} != $borrower->{borrowernumber} )
1007 return 0;
1011 # Budget restricted to owner, users and library
1012 elsif ( $budget->{budget_permission} == 2 ) {
1013 my @budget_users = GetBudgetUsers( $budget->{budget_id} );
1015 if (
1017 $budget->{budget_owner_id}
1018 and $budget->{budget_owner_id} !=
1019 $borrower->{borrowernumber}
1020 or not $budget->{budget_owner_id}
1022 and ( 0 == grep { $borrower->{borrowernumber} == $_ }
1023 @budget_users )
1024 and defined $budget->{budget_branchcode}
1025 and $budget->{budget_branchcode} ne
1026 C4::Context->userenv->{branch}
1029 return 0;
1033 # Budget restricted to owner and users
1034 elsif ( $budget->{budget_permission} == 3 ) {
1035 my @budget_users = GetBudgetUsers( $budget->{budget_id} );
1036 if (
1038 $budget->{budget_owner_id}
1039 and $budget->{budget_owner_id} !=
1040 $borrower->{borrowernumber}
1041 or not $budget->{budget_owner_id}
1043 and ( 0 == grep { $borrower->{borrowernumber} == $_ }
1044 @budget_users )
1047 return 0;
1052 return 1;
1055 sub CanUserModifyBudget {
1056 my ($borrower, $budget, $userflags) = @_;
1058 if (not ref $borrower) {
1059 $borrower = Koha::Patrons->find( $borrower );
1060 return 0 unless $borrower;
1061 $borrower = $borrower->unblessed;
1063 if (not ref $budget) {
1064 $budget = GetBudget($budget);
1067 return 0 unless ($borrower and $budget);
1069 if (not defined $userflags) {
1070 $userflags = C4::Auth::getuserflags($borrower->{flags},
1071 $borrower->{userid});
1074 unless ($userflags->{superlibrarian}
1075 || (ref $userflags->{acquisition}
1076 && $userflags->{acquisition}->{budget_manage_all})
1077 || (!ref $userflags->{acquisition} && $userflags->{acquisition}))
1079 if (!CanUserUseBudget($borrower, $budget, $userflags)) {
1080 return 0;
1083 if (ref $userflags->{acquisition}
1084 && !$userflags->{acquisition}->{budget_modify}) {
1085 return 0;
1089 return 1;
1092 sub _round {
1093 my ($value, $increment) = @_;
1095 if ($increment && $increment != 0) {
1096 $value = int($value / $increment) * $increment;
1099 return $value;
1102 =head2 CloneBudgetPeriod
1104 my $new_budget_period_id = CloneBudgetPeriod({
1105 budget_period_id => $budget_period_id,
1106 budget_period_startdate => $budget_period_startdate,
1107 budget_period_enddate => $budget_period_enddate,
1108 mark_original_budget_as_inactive => 1n
1109 reset_all_budgets => 1,
1112 Clone a budget period with all budgets.
1113 If the mark_origin_budget_as_inactive is set (0 by default),
1114 the original budget will be marked as inactive.
1116 If the reset_all_budgets is set (0 by default), all budget (fund)
1117 amounts will be reset.
1119 =cut
1121 sub CloneBudgetPeriod {
1122 my ($params) = @_;
1123 my $budget_period_id = $params->{budget_period_id};
1124 my $budget_period_startdate = $params->{budget_period_startdate};
1125 my $budget_period_enddate = $params->{budget_period_enddate};
1126 my $budget_period_description = $params->{budget_period_description};
1127 my $amount_change_percentage = $params->{amount_change_percentage};
1128 my $amount_change_round_increment = $params->{amount_change_round_increment};
1129 my $mark_original_budget_as_inactive =
1130 $params->{mark_original_budget_as_inactive} || 0;
1131 my $reset_all_budgets = $params->{reset_all_budgets} || 0;
1133 my $budget_period = GetBudgetPeriod($budget_period_id);
1135 $budget_period->{budget_period_startdate} = $budget_period_startdate;
1136 $budget_period->{budget_period_enddate} = $budget_period_enddate;
1137 $budget_period->{budget_period_description} = $budget_period_description;
1138 # The new budget (budget_period) should be active by default
1139 $budget_period->{budget_period_active} = 1;
1141 if ($amount_change_percentage) {
1142 my $total = $budget_period->{budget_period_total};
1143 $total += $total * $amount_change_percentage / 100;
1144 $total = _round($total, $amount_change_round_increment);
1145 $budget_period->{budget_period_total} = $total;
1148 my $original_budget_period_id = $budget_period->{budget_period_id};
1149 delete $budget_period->{budget_period_id};
1150 my $new_budget_period_id = AddBudgetPeriod( $budget_period );
1152 my $budgets = GetBudgetHierarchy($budget_period_id);
1153 CloneBudgetHierarchy(
1155 budgets => $budgets,
1156 new_budget_period_id => $new_budget_period_id
1160 if ($mark_original_budget_as_inactive) {
1161 ModBudgetPeriod(
1163 budget_period_id => $budget_period_id,
1164 budget_period_active => 0,
1169 if ( $reset_all_budgets ) {
1170 my $budgets = GetBudgets({ budget_period_id => $new_budget_period_id });
1171 for my $budget ( @$budgets ) {
1172 $budget->{budget_amount} = 0;
1173 ModBudget( $budget );
1175 } elsif ($amount_change_percentage) {
1176 my $budgets = GetBudgets({ budget_period_id => $new_budget_period_id });
1177 for my $budget ( @$budgets ) {
1178 my $amount = $budget->{budget_amount};
1179 $amount += $amount * $amount_change_percentage / 100;
1180 $amount = _round($amount, $amount_change_round_increment);
1181 $budget->{budget_amount} = $amount;
1182 ModBudget( $budget );
1186 return $new_budget_period_id;
1189 =head2 CloneBudgetHierarchy
1191 CloneBudgetHierarchy({
1192 budgets => $budgets,
1193 new_budget_period_id => $new_budget_period_id;
1196 Clone a budget hierarchy.
1198 =cut
1200 sub CloneBudgetHierarchy {
1201 my ($params) = @_;
1202 my $budgets = $params->{budgets};
1203 my $new_budget_period_id = $params->{new_budget_period_id};
1204 next unless @$budgets or $new_budget_period_id;
1206 my $children_of = $params->{children_of};
1207 my $new_parent_id = $params->{new_parent_id};
1209 my @first_level_budgets =
1210 ( not defined $children_of )
1211 ? map { ( not $_->{budget_parent_id} ) ? $_ : () } @$budgets
1212 : map { ( $_->{budget_parent_id} == $children_of ) ? $_ : () } @$budgets;
1214 # get only the columns of aqbudgets
1215 my @columns = Koha::Database->new()->schema->source('Aqbudget')->columns;
1217 for my $budget ( sort { $a->{budget_id} <=> $b->{budget_id} }
1218 @first_level_budgets )
1221 my $tidy_budget =
1222 { map { join( ' ', @columns ) =~ /$_/ ? ( $_ => $budget->{$_} ) : () }
1223 keys %$budget };
1224 delete $tidy_budget->{timestamp};
1225 my $new_budget_id = AddBudget(
1227 %$tidy_budget,
1228 budget_id => undef,
1229 budget_parent_id => $new_parent_id,
1230 budget_period_id => $new_budget_period_id
1233 CloneBudgetHierarchy(
1235 budgets => $budgets,
1236 new_budget_period_id => $new_budget_period_id,
1237 children_of => $budget->{budget_id},
1238 new_parent_id => $new_budget_id
1244 =head2 MoveOrders
1246 my $report = MoveOrders({
1247 from_budget_period_id => $from_budget_period_id,
1248 to_budget_period_id => $to_budget_period_id,
1251 Move orders from one budget period to another.
1253 =cut
1255 sub MoveOrders {
1256 my ($params) = @_;
1257 my $from_budget_period_id = $params->{from_budget_period_id};
1258 my $to_budget_period_id = $params->{to_budget_period_id};
1259 my $move_remaining_unspent = $params->{move_remaining_unspent};
1260 return
1261 if not $from_budget_period_id
1262 or not $to_budget_period_id
1263 or $from_budget_period_id == $to_budget_period_id;
1265 # Can't move orders to an inactive budget (budgetperiod)
1266 my $budget_period = GetBudgetPeriod($to_budget_period_id);
1267 return unless $budget_period->{budget_period_active};
1269 my @report;
1270 my $dbh = C4::Context->dbh;
1271 my $sth_update_aqorders = $dbh->prepare(
1273 UPDATE aqorders
1274 SET budget_id = ?
1275 WHERE ordernumber = ?
1278 my $sth_update_budget_amount = $dbh->prepare(
1280 UPDATE aqbudgets
1281 SET budget_amount = ?
1282 WHERE budget_id = ?
1285 my $from_budgets = GetBudgetHierarchy($from_budget_period_id);
1286 for my $from_budget (@$from_budgets) {
1287 my $new_budget_id = $dbh->selectcol_arrayref(
1289 SELECT budget_id
1290 FROM aqbudgets
1291 WHERE budget_period_id = ?
1292 AND budget_code = ?
1293 |, {}, $to_budget_period_id, $from_budget->{budget_code}
1295 $new_budget_id = $new_budget_id->[0];
1296 my $new_budget = GetBudget( $new_budget_id );
1297 unless ( $new_budget ) {
1298 push @report,
1300 moved => 0,
1301 budget => $from_budget,
1302 error => 'budget_code_not_exists',
1304 next;
1306 my $orders_to_move = C4::Acquisition::SearchOrders(
1308 budget_id => $from_budget->{budget_id},
1309 pending => 1,
1313 my @orders_moved;
1314 for my $order (@$orders_to_move) {
1315 $sth_update_aqorders->execute( $new_budget->{budget_id}, $order->{ordernumber} );
1316 push @orders_moved, $order;
1319 my $unspent_moved = 0;
1320 if ($move_remaining_unspent) {
1321 my $spent = GetBudgetHierarchySpent( $from_budget->{budget_id} );
1322 my $unspent = $from_budget->{budget_amount} - $spent;
1323 my $new_budget_amount = $new_budget->{budget_amount};
1324 if ( $unspent > 0 ) {
1325 $new_budget_amount += $unspent;
1326 $unspent_moved = $unspent;
1328 $new_budget->{budget_amount} = $new_budget_amount;
1329 $sth_update_budget_amount->execute( $new_budget_amount,
1330 $new_budget->{budget_id} );
1333 push @report,
1335 budget => $new_budget,
1336 orders_moved => \@orders_moved,
1337 moved => 1,
1338 unspent_moved => $unspent_moved,
1341 return \@report;
1344 END { } # module clean-up code here (global destructor)
1347 __END__
1349 =head1 AUTHOR
1351 Koha Development Team <http://koha-community.org/>
1353 =cut