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>.
24 use Koha
::Acquisition
::Invoice
::Adjustments
;
27 use vars
qw(@ISA @EXPORT);
35 &GetBudgetByOrderNumber
49 GetBudgetHierarchySpent
50 GetBudgetHierarchyOrdered
70 &CheckBudgetParentPerm
77 # ----------------------------BUDGETS.PM-----------------------------";
79 =head1 FUNCTIONS ABOUT BUDGETS
84 my ( $authcat, @hide_cols ) = @_;
85 my $dbh = C4
::Context
->dbh;
87 my $sth1 = $dbh->prepare(
89 UPDATE aqbudgets_planning SET display
= 0
93 foreach my $authvalue (@hide_cols) {
94 # $sth1->{TraceLevel} = 3;
95 $sth1->execute( $authcat, $authvalue );
100 my ( $authcat, $authvalue ) = @_;
102 my $dbh = C4
::Context
->dbh;
103 my $sth = $dbh->prepare(
105 SELECT count
(display
) as cnt from aqbudgets_planning
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
};
123 my $parent = GetBudget
($parent_id);
124 $parent_id = $parent->{budget_parent_id
};
125 if ( $parent->{budget_owner_id
} == $borrower_id ) {
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 ");
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
= ?
| );
164 $sth->execute($parent_id_tmp);
165 my $res = $sth->fetchrow_hashref;
166 if ( $res->{'budget_parent_id'} == $budget_id ) {
169 if ( not defined $res->{'budget_parent_id'} ) {
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 ) = @_; #FIXME we don't use $period
213 my $dbh = C4
::Context
->dbh;
214 my $roundsql = C4
::Acquisition
::get_rounding_sql
(qq|ecost_tax_included
|);
215 if ( $cell->{'authcat'} eq 'MONTHS' ) {
216 # get the actual amount
217 # FIXME we should consider quantity
218 $sth = $dbh->prepare( qq|
220 SELECT SUM
(| . $roundsql . qq|) AS actual FROM aqorders
221 WHERE budget_id
= ? AND
222 entrydate like
"$cell->{'authvalue'}%" |
224 $sth->execute( $cell->{'budget_id'} );
225 } elsif ( $cell->{'authcat'} eq 'BRANCHES' ) {
226 # get the actual amount
227 # FIXME we should consider quantity
228 $sth = $dbh->prepare( qq|
230 SELECT SUM
(| . $roundsql . qq|) FROM aqorders
231 LEFT JOIN aqorders_items
232 ON
(aqorders
.ordernumber
= aqorders_items
.ordernumber
)
234 ON
(aqorders_items
.itemnumber
= items
.itemnumber
)
235 WHERE budget_id
= ? AND homebranch
= ?
| );
237 $sth->execute( $cell->{'budget_id'}, $cell->{'authvalue'} );
238 } elsif ( $cell->{'authcat'} eq 'ITEMTYPES' ) {
239 # get the actual amount
240 $sth = $dbh->prepare( qq|
242 SELECT SUM
( | . $roundsql . qq| * quantity
) AS actual
243 FROM aqorders JOIN biblioitems
244 ON
(biblioitems
.biblionumber
= aqorders
.biblionumber
)
245 WHERE aqorders
.budget_id
= ?
and itemtype
= ?
|
247 $sth->execute( $cell->{'budget_id'},
248 $cell->{'authvalue'} );
250 # ELSE GENERIC ORDERS SORT1/SORT2 STAT COUNT.
252 # get the actual amount
253 $sth = $dbh->prepare( qq|
255 SELECT SUM
(| . $roundsql . qq| * quantity
) AS actual
257 JOIN aqbudgets ON
(aqbudgets
.budget_id
= aqorders
.budget_id
)
258 WHERE aqorders
.budget_id
= ? AND
259 ((aqbudgets
.sort1_authcat
= ? AND sort1
=?
) OR
260 (aqbudgets
.sort2_authcat
= ? AND sort2
=?
)) |
262 $sth->execute( $cell->{'budget_id'},
263 $budget->{'sort1_authcat'},
264 $cell->{'authvalue'},
265 $budget->{'sort2_authcat'},
269 $actual = $sth->fetchrow_array;
271 # get the estimated amount
272 $sth = $dbh->prepare( qq|
274 SELECT estimated_amount AS estimated
, display FROM aqbudgets_planning
275 WHERE budget_period_id
= ? AND
280 $sth->execute( $cell->{'budget_period_id'},
281 $cell->{'budget_id'},
282 $cell->{'authvalue'},
287 my $res = $sth->fetchrow_hashref;
288 # my $display = $res->{'display'};
289 my $estimated = $res->{'estimated'};
292 return $actual, $estimated;
295 # -------------------------------------------------------------------
297 my ( $budget_plan, $budget_period_id, $authcat ) = @_;
298 my $dbh = C4
::Context
->dbh;
299 foreach my $buds (@
$budget_plan) {
300 my $lines = $buds->{lines
};
301 my $sth = $dbh->prepare( qq|
302 DELETE FROM aqbudgets_planning
303 WHERE budget_period_id
= ? AND
307 #delete a aqplan line of cells, then insert new cells,
308 # these could be UPDATES rather than DEL/INSERTS...
309 $sth->execute( $budget_period_id, $lines->[0]{budget_id
} , $authcat );
311 foreach my $cell (@
$lines) {
312 my $sth = $dbh->prepare( qq|
314 INSERT INTO aqbudgets_planning
316 budget_period_id
= ?
,
318 estimated_amount
= ?
,
322 $cell->{'budget_id'},
323 $cell->{'budget_period_id'},
325 $cell->{'estimated_amount'},
326 $cell->{'authvalue'},
332 # -------------------------------------------------------------------
334 my ($budget_id) = @_;
335 my $dbh = C4
::Context
->dbh;
336 # unitprice_tax_included should always been set here
337 # we should not need to retrieve ecost_tax_included
338 my $sth = $dbh->prepare(qq|
339 SELECT SUM
( | . C4
::Acquisition
::get_rounding_sql
("COALESCE(unitprice_tax_included, ecost_tax_included)") . qq| * quantity
) AS sum FROM aqorders
340 WHERE budget_id
= ? AND
341 quantityreceived
> 0 AND
342 datecancellationprinted IS NULL
344 $sth->execute($budget_id);
345 my $sum = ( $sth->fetchrow_array || 0 ) + 0;
347 $sth = $dbh->prepare(qq|
348 SELECT SUM
(shipmentcost
) AS sum
350 WHERE shipmentcost_budgetid
= ?
353 $sth->execute($budget_id);
354 my ($shipmentcost_sum) = $sth->fetchrow_array;
355 $sum += ( $shipmentcost_sum || 0 ) + 0;
357 my $adjustments = Koha
::Acquisition
::Invoice
::Adjustments
->search({budget_id
=> $budget_id, closedate
=> { '!=' => undef } },{ join => 'invoiceid' });
358 while ( my $adj = $adjustments->next ){
359 $sum += $adj->adjustment;
365 # -------------------------------------------------------------------
366 sub GetBudgetOrdered
{
367 my ($budget_id) = @_;
368 my $dbh = C4
::Context
->dbh;
369 my $sth = $dbh->prepare(qq|
370 SELECT SUM
(| . C4
::Acquisition
::get_rounding_sql
(qq|ecost_tax_included
|) . qq| * quantity
) AS sum FROM aqorders
371 WHERE budget_id
= ? AND
372 quantityreceived
= 0 AND
373 datecancellationprinted IS NULL
375 $sth->execute($budget_id);
376 my $sum = ( $sth->fetchrow_array || 0 ) + 0;
378 my $adjustments = Koha
::Acquisition
::Invoice
::Adjustments
->search({budget_id
=> $budget_id, encumber_open
=> 1, closedate
=> undef},{ join => 'invoiceid' });
379 while ( my $adj = $adjustments->next ){
380 $sum += $adj->adjustment;
388 my $budget_name = &GetBudgetName($budget_id);
390 get the budget_name for a given budget_id
395 my ( $budget_id ) = @_;
396 my $dbh = C4
::Context
->dbh;
397 my $sth = $dbh->prepare(
404 $sth->execute($budget_id);
405 return $sth->fetchrow_array;
408 =head2 GetBudgetAuthCats
410 my $auth_cats = &GetBudgetAuthCats($budget_period_id);
412 Return the list of authcat for a given budget_period_id
416 sub GetBudgetAuthCats
{
417 my ($budget_period_id) = shift;
418 # now, populate the auth_cats_loop used in the budget planning button
419 # we must retrieve all auth values used by at least one budget
420 my $dbh = C4
::Context
->dbh;
421 my $sth=$dbh->prepare("SELECT sort1_authcat,sort2_authcat FROM aqbudgets WHERE budget_period_id=?");
422 $sth->execute($budget_period_id);
424 while (my ($sort1_authcat,$sort2_authcat) = $sth->fetchrow) {
425 $authcats{$sort1_authcat}=1 if $sort1_authcat;
426 $authcats{$sort2_authcat}=1 if $sort2_authcat;
428 return [ sort keys %authcats ];
431 # -------------------------------------------------------------------
432 sub GetBudgetPeriods
{
433 my ($filters,$orderby) = @_;
435 my $rs = Koha
::Database
->new()->schema->resultset('Aqbudgetperiod');
436 $rs = $rs->search( $filters, { order_by
=> $orderby } );
437 $rs->result_class('DBIx::Class::ResultClass::HashRefInflator');
440 # -------------------------------------------------------------------
441 sub GetBudgetPeriod
{
442 my ($budget_period_id) = @_;
443 my $dbh = C4
::Context
->dbh;
444 my $sth = $dbh->prepare( qq|
447 WHERE budget_period_id
=?
|
449 $sth->execute($budget_period_id);
450 return $sth->fetchrow_hashref;
454 my ($budget_period_id) = @_;
455 my $dbh = C4
::Context
->dbh;
456 ; ## $total = number of records linked to the record that must be deleted
459 ## get information about the record that will be deleted
460 my $sth = $dbh->prepare(qq|
463 WHERE budget_period_id
=?
|
465 return $sth->execute($budget_period_id);
468 # -------------------------------------------------------------------
469 sub ModBudgetPeriod
{
470 my ($budget_period) = @_;
471 my $result = Koha
::Database
->new()->schema->resultset('Aqbudgetperiod')->find($budget_period);
472 return unless($result);
474 $result = $result->update($budget_period);
475 return $result->in_storage;
478 # -------------------------------------------------------------------
479 sub GetBudgetHierarchy
{
480 my ( $budget_period_id, $branchcode, $owner ) = @_;
482 my $dbh = C4
::Context
->dbh;
484 SELECT aqbudgets
.*, aqbudgetperiods
.budget_period_active
, aqbudgetperiods
.budget_period_description
,
485 b
.firstname as budget_owner_firstname
, b
.surname as budget_owner_surname
, b
.borrowernumber as budget_owner_borrowernumber
487 LEFT JOIN borrowers b on b
.borrowernumber
= aqbudgets
.budget_owner_id
488 JOIN aqbudgetperiods USING
(budget_period_id
)|;
491 # show only period X if requested
492 if ($budget_period_id) {
493 push @where_strings," aqbudgets.budget_period_id = ?";
494 push @bind_params, $budget_period_id;
496 # show only budgets owned by me, my branch or everyone
500 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
="")))};
501 push @bind_params, ( $owner, $branchcode );
503 push @where_strings, ' (budget_owner_id = ? OR budget_owner_id IS NULL or budget_owner_id ="") ';
504 push @bind_params, $owner;
508 push @where_strings," (budget_branchcode =? or budget_branchcode is NULL OR budget_branchcode='')";
509 push @bind_params, $branchcode;
512 $query.=" WHERE ".join(' AND ', @where_strings) if @where_strings;
513 $debug && warn $query,join(",",@bind_params);
514 my $sth = $dbh->prepare($query);
515 $sth->execute(@bind_params);
518 # create hash with budget_id has key
519 while ( my $data = $sth->fetchrow_hashref ) {
520 $links{ $data->{'budget_id'} } = $data;
523 # link child to parent
525 foreach my $budget ( sort { $a->{budget_code
} cmp $b->{budget_code
} } values %links ) {
526 my $child = $links{$budget->{budget_id
}};
527 if ( $child->{'budget_parent_id'} ) {
528 my $parent = $links{ $child->{'budget_parent_id'} };
530 unless ( $parent->{'children'} ) {
531 # init child arrayref
532 $parent->{'children'} = [];
535 push @
{ $parent->{'children'} }, $child;
538 push @first_parents, $child;
543 foreach my $first_parent (@first_parents) {
544 _add_budget_children
(\
@sort, $first_parent, 0);
547 # Get all the budgets totals in as few queries as possible
548 my $hr_budget_spent = $dbh->selectall_hashref(q
|
549 SELECT aqorders
.budget_id
, aqbudgets
.budget_parent_id
,
550 SUM
( | . C4
::Acquisition
::get_rounding_sql
(qq|COALESCE
(unitprice_tax_included
, ecost_tax_included
)|) . q
| * quantity
) AS budget_spent
551 FROM aqorders JOIN aqbudgets USING
(budget_id
)
552 WHERE quantityreceived
> 0 AND datecancellationprinted IS NULL
553 GROUP BY budget_id
, budget_parent_id
555 my $hr_budget_ordered = $dbh->selectall_hashref(q
|
556 SELECT aqorders
.budget_id
, aqbudgets
.budget_parent_id
,
557 SUM
( | . C4
::Acquisition
::get_rounding_sql
(qq|ecost_tax_included
|) . q
| * quantity
) AS budget_ordered
558 FROM aqorders JOIN aqbudgets USING
(budget_id
)
559 WHERE quantityreceived
= 0 AND datecancellationprinted IS NULL
560 GROUP BY budget_id
, budget_parent_id
562 my $hr_budget_spent_shipment = $dbh->selectall_hashref(q
|
563 SELECT shipmentcost_budgetid as budget_id
,
564 SUM
(shipmentcost
) as shipmentcost
566 WHERE closedate IS NOT NULL
567 GROUP BY shipmentcost_budgetid
569 my $hr_budget_ordered_shipment = $dbh->selectall_hashref(q
|
570 SELECT shipmentcost_budgetid as budget_id
,
571 SUM
(shipmentcost
) as shipmentcost
573 WHERE closedate IS NULL
574 GROUP BY shipmentcost_budgetid
576 my $hr_budget_spent_adjustment = $dbh->selectall_hashref(q
|
578 SUM
(adjustment
) as adjustments
579 FROM aqinvoice_adjustments
580 JOIN aqinvoices USING
(invoiceid
)
581 WHERE closedate IS NOT NULL
584 my $hr_budget_ordered_adjustment = $dbh->selectall_hashref(q
|
586 SUM
(adjustment
) as adjustments
587 FROM aqinvoice_adjustments
588 JOIN aqinvoices USING
(invoiceid
)
589 WHERE closedate IS NULL AND encumber_open
= 1
594 foreach my $budget (@sort) {
595 if ( not defined $budget->{budget_parent_id
} ) {
596 _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 );
603 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 ) = @_;
605 foreach my $child (@
{$budget->{children
}}){
606 _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 );
609 $budget->{budget_spent
} += $hr_budget_spent->{$budget->{budget_id
}}->{budget_spent
} || 0;
610 $budget->{budget_spent
} += $hr_budget_spent_shipment->{$budget->{budget_id
}}->{shipmentcost
} || 0;
611 $budget->{budget_spent
} += $hr_budget_spent_adjustment->{$budget->{budget_id
}}->{adjustments
} || 0;
612 $budget->{budget_ordered
} += $hr_budget_ordered->{$budget->{budget_id
}}->{budget_ordered
} || 0;
613 $budget->{budget_ordered
} += $hr_budget_ordered_shipment->{$budget->{budget_id
}}->{shipmentcost
} || 0;
614 $budget->{budget_ordered
} += $hr_budget_ordered_adjustment->{$budget->{budget_id
}}->{adjustments
} || 0;
616 $budget->{total_spent
} += $budget->{budget_spent
};
617 $budget->{total_ordered
} += $budget->{budget_ordered
};
620 $parent->{total_spent
} += $budget->{total_spent
};
621 $parent->{total_ordered
} += $budget->{total_ordered
};
625 # Recursive method to add a budget and its chidren to an array
626 sub _add_budget_children
{
629 $budget->{budget_level
} = shift;
631 my $children = $budget->{'children'} || [];
632 return unless @
$children; # break recursivity
633 foreach my $child (@
$children) {
634 _add_budget_children
($res, $child, $budget->{budget_level
} + 1);
638 # -------------------------------------------------------------------
639 # FIXME Must be replaced by Koha::Acquisition::Fund->store
642 return unless ($budget);
644 undef $budget->{budget_encumb
} if defined $budget->{budget_encumb
} && $budget->{budget_encumb
} eq '';
645 undef $budget->{budget_owner_id
} if defined $budget->{budget_owner_id
} && $budget->{budget_owner_id
} eq '';
646 my $resultset = Koha
::Database
->new()->schema->resultset('Aqbudget');
647 return $resultset->create($budget)->id;
650 # -------------------------------------------------------------------
651 # FIXME Must be replaced by Koha::Acquisition::Fund->store
654 my $result = Koha
::Database
->new()->schema->resultset('Aqbudget')->find($budget);
655 return unless($result);
657 undef $budget->{budget_encumb
} if defined $budget->{budget_encumb
} && $budget->{budget_encumb
} eq '';
658 undef $budget->{budget_owner_id
} if defined $budget->{budget_owner_id
} && $budget->{budget_owner_id
} eq '';
659 $result = $result->update($budget);
660 return $result->in_storage;
663 # -------------------------------------------------------------------
664 # FIXME Must be replaced by Koha::Acquisition::Fund->delete
666 my ($budget_id) = @_;
667 my $dbh = C4
::Context
->dbh;
668 my $sth = $dbh->prepare("delete from aqbudgets where budget_id=?");
669 my $rc = $sth->execute($budget_id);
674 # -------------------------------------------------------------------
678 &GetBudget($budget_id);
680 get a specific budget
685 my ( $budget_id ) = @_;
686 my $dbh = C4
::Context
->dbh;
692 my $sth = $dbh->prepare($query);
693 $sth->execute( $budget_id );
694 my $result = $sth->fetchrow_hashref;
698 # -------------------------------------------------------------------
700 =head2 GetBudgetByOrderNumber
702 &GetBudgetByOrderNumber($ordernumber);
704 get a specific budget by order number
708 sub GetBudgetByOrderNumber
{
709 my ( $ordernumber ) = @_;
710 my $dbh = C4
::Context
->dbh;
713 FROM aqbudgets, aqorders
715 AND aqorders.budget_id = aqbudgets.budget_id
717 my $sth = $dbh->prepare($query);
718 $sth->execute( $ordernumber );
719 my $result = $sth->fetchrow_hashref;
723 =head2 GetBudgetReport
725 &GetBudgetReport( [$budget_id] );
727 Get all orders for a specific budget, without cancelled orders.
729 Returns an array of hashrefs.
733 # --------------------------------------------------------------------
734 sub GetBudgetReport
{
735 my ( $budget_id ) = @_;
736 my $dbh = C4
::Context
->dbh;
738 SELECT o.*, b.budget_name
740 INNER JOIN aqorders o
741 ON b.budget_id = o.budget_id
743 AND (o.orderstatus != "cancelled")
744 ORDER BY b.budget_name';
746 my $sth = $dbh->prepare($query);
747 $sth->execute( $budget_id );
750 while ( my $data = $sth->fetchrow_hashref ) {
751 push( @results, $data );
756 =head2 GetBudgetsByActivity
758 &GetBudgetsByActivity( $budget_period_active );
760 Get all active or inactive budgets, depending of the value
768 # --------------------------------------------------------------------
769 sub GetBudgetsByActivity
{
770 my ( $budget_period_active ) = @_;
771 my $dbh = C4
::Context
->dbh;
774 FROM aqbudgetperiods bp
775 INNER JOIN aqbudgets b
776 ON bp.budget_period_id = b.budget_period_id
777 WHERE bp.budget_period_active=?
779 my $sth = $dbh->prepare($query);
780 $sth->execute( $budget_period_active );
782 while ( my $data = $sth->fetchrow_hashref ) {
783 push( @results, $data );
787 # --------------------------------------------------------------------
789 =head2 GetBudgetsReport
791 &GetBudgetsReport( [$activity] );
793 Get all but cancelled orders for all funds.
795 If the optionnal activity parameter is passed, returns orders for active/inactive budgets only.
800 Returns an array of hashrefs.
804 sub GetBudgetsReport
{
806 my $dbh = C4
::Context
->dbh;
808 SELECT o.*, b.budget_name
809 FROM aqbudgetperiods bp
810 INNER JOIN aqbudgets b
811 ON bp.budget_period_id = b.budget_period_id
812 INNER JOIN aqorders o
813 ON b.budget_id = o.budget_id ';
814 if ( $activity && $activity ne '' ) {
815 $query .= 'WHERE bp.budget_period_active=? ';
817 $query .= 'AND (o.orderstatus != "cancelled")
818 ORDER BY b.budget_name';
820 my $sth = $dbh->prepare($query);
821 if ( $activity && $activity ne '' ) {
822 $sth->execute($activity);
828 while ( my $data = $sth->fetchrow_hashref ) {
829 push( @results, $data );
834 =head2 GetBudgetByCode
836 my $budget = &GetBudgetByCode($budget_code);
838 Retrieve all aqbudgets fields as a hashref for the budget that has
843 sub GetBudgetByCode
{
844 my ( $budget_code ) = @_;
846 my $dbh = C4
::Context
->dbh;
850 JOIN aqbudgetperiods USING
(budget_period_id
)
851 WHERE budget_code
= ?
852 ORDER BY budget_period_active DESC
, budget_id DESC
855 my $sth = $dbh->prepare( $query );
856 $sth->execute( $budget_code );
857 return $sth->fetchrow_hashref;
860 =head2 GetBudgetHierarchySpent
862 my $spent = GetBudgetHierarchySpent( $budget_id );
864 Gets the total spent of the level and sublevels of $budget_id
868 sub GetBudgetHierarchySpent
{
869 my ( $budget_id ) = @_;
870 my $dbh = C4
::Context
->dbh;
871 my $children_ids = $dbh->selectcol_arrayref(q
|
874 WHERE budget_parent_id
= ?
877 my $total_spent = GetBudgetSpent
( $budget_id );
878 for my $child_id ( @
$children_ids ) {
879 $total_spent += GetBudgetHierarchySpent
( $child_id );
884 =head2 GetBudgetHierarchyOrdered
886 my $ordered = GetBudgetHierarchyOrdered( $budget_id );
888 Gets the total ordered of the level and sublevels of $budget_id
892 sub GetBudgetHierarchyOrdered
{
893 my ( $budget_id ) = @_;
894 my $dbh = C4
::Context
->dbh;
895 my $children_ids = $dbh->selectcol_arrayref(q
|
898 WHERE budget_parent_id
= ?
901 my $total_ordered = GetBudgetOrdered
( $budget_id );
902 for my $child_id ( @
$children_ids ) {
903 $total_ordered += GetBudgetHierarchyOrdered
( $child_id );
905 return $total_ordered;
910 &GetBudgets($filter, $order_by);
916 # -------------------------------------------------------------------
918 my ($filters, $orderby) = @_;
919 $orderby = 'budget_name' unless($orderby);
921 my $rs = Koha
::Database
->new()->schema->resultset('Aqbudget');
922 $rs = $rs->search( $filters, { order_by
=> $orderby } );
923 $rs->result_class('DBIx::Class::ResultClass::HashRefInflator');
927 =head2 GetBudgetUsers
929 my @borrowernumbers = &GetBudgetUsers($budget_id);
931 Return the list of borrowernumbers linked to a budget
936 my ($budget_id) = @_;
938 my $dbh = C4
::Context
->dbh;
940 SELECT borrowernumber
941 FROM aqbudgetborrowers
944 my $sth = $dbh->prepare($query);
945 $sth->execute($budget_id);
948 while (my ($borrowernumber) = $sth->fetchrow_array) {
949 push @borrowernumbers, $borrowernumber
952 return @borrowernumbers;
955 =head2 ModBudgetUsers
957 &ModBudgetUsers($budget_id, @borrowernumbers);
959 Modify the list of borrowernumbers linked to a budget
964 my ($budget_id, @budget_users_id) = @_;
966 return unless $budget_id;
968 my $dbh = C4
::Context
->dbh;
969 my $query = "DELETE FROM aqbudgetborrowers WHERE budget_id = ?";
970 my $sth = $dbh->prepare($query);
971 $sth->execute($budget_id);
974 INSERT INTO aqbudgetborrowers
(budget_id
, borrowernumber
)
977 $sth = $dbh->prepare($query);
978 foreach my $borrowernumber (@budget_users_id) {
979 next unless $borrowernumber;
980 $sth->execute($budget_id, $borrowernumber);
984 sub CanUserUseBudget
{
985 my ($borrower, $budget, $userflags) = @_;
987 if (not ref $borrower) {
988 $borrower = Koha
::Patrons
->find( $borrower );
989 return 0 unless $borrower;
990 $borrower = $borrower->unblessed;
992 if (not ref $budget) {
993 $budget = GetBudget
($budget);
996 return 0 unless ($borrower and $budget);
998 if (not defined $userflags) {
999 $userflags = C4
::Auth
::getuserflags
($borrower->{flags
},
1000 $borrower->{userid
});
1003 unless ($userflags->{superlibrarian
}
1004 || (ref $userflags->{acquisition
}
1005 && $userflags->{acquisition
}->{budget_manage_all
})
1006 || (!ref $userflags->{acquisition
} && $userflags->{acquisition
}))
1008 if (not exists $userflags->{acquisition
}) {
1012 if (!ref $userflags->{acquisition
} && !$userflags->{acquisition
}) {
1016 # Budget restricted to owner
1017 if ( $budget->{budget_permission
} == 1 ) {
1018 if ( $budget->{budget_owner_id
}
1019 and $budget->{budget_owner_id
} != $borrower->{borrowernumber
} )
1025 # Budget restricted to owner, users and library
1026 elsif ( $budget->{budget_permission
} == 2 ) {
1027 my @budget_users = GetBudgetUsers
( $budget->{budget_id
} );
1031 $budget->{budget_owner_id
}
1032 and $budget->{budget_owner_id
} !=
1033 $borrower->{borrowernumber
}
1034 or not $budget->{budget_owner_id
}
1036 and ( 0 == grep { $borrower->{borrowernumber
} == $_ }
1038 and defined $budget->{budget_branchcode
}
1039 and $budget->{budget_branchcode
} ne
1040 C4
::Context
->userenv->{branch
}
1047 # Budget restricted to owner and users
1048 elsif ( $budget->{budget_permission
} == 3 ) {
1049 my @budget_users = GetBudgetUsers
( $budget->{budget_id
} );
1052 $budget->{budget_owner_id
}
1053 and $budget->{budget_owner_id
} !=
1054 $borrower->{borrowernumber
}
1055 or not $budget->{budget_owner_id
}
1057 and ( 0 == grep { $borrower->{borrowernumber
} == $_ }
1069 sub CanUserModifyBudget
{
1070 my ($borrower, $budget, $userflags) = @_;
1072 if (not ref $borrower) {
1073 $borrower = Koha
::Patrons
->find( $borrower );
1074 return 0 unless $borrower;
1075 $borrower = $borrower->unblessed;
1077 if (not ref $budget) {
1078 $budget = GetBudget
($budget);
1081 return 0 unless ($borrower and $budget);
1083 if (not defined $userflags) {
1084 $userflags = C4
::Auth
::getuserflags
($borrower->{flags
},
1085 $borrower->{userid
});
1088 unless ($userflags->{superlibrarian
}
1089 || (ref $userflags->{acquisition
}
1090 && $userflags->{acquisition
}->{budget_manage_all
})
1091 || (!ref $userflags->{acquisition
} && $userflags->{acquisition
}))
1093 if (!CanUserUseBudget
($borrower, $budget, $userflags)) {
1097 if (ref $userflags->{acquisition
}
1098 && !$userflags->{acquisition
}->{budget_modify
}) {
1107 my ($value, $increment) = @_;
1109 if ($increment && $increment != 0) {
1110 $value = int($value / $increment) * $increment;
1116 =head2 CloneBudgetPeriod
1118 my $new_budget_period_id = CloneBudgetPeriod({
1119 budget_period_id => $budget_period_id,
1120 budget_period_startdate => $budget_period_startdate,
1121 budget_period_enddate => $budget_period_enddate,
1122 mark_original_budget_as_inactive => 1n
1123 reset_all_budgets => 1,
1126 Clone a budget period with all budgets.
1127 If the mark_origin_budget_as_inactive is set (0 by default),
1128 the original budget will be marked as inactive.
1130 If the reset_all_budgets is set (0 by default), all budget (fund)
1131 amounts will be reset.
1135 sub CloneBudgetPeriod
{
1137 my $budget_period_id = $params->{budget_period_id
};
1138 my $budget_period_startdate = $params->{budget_period_startdate
};
1139 my $budget_period_enddate = $params->{budget_period_enddate
};
1140 my $budget_period_description = $params->{budget_period_description
};
1141 my $amount_change_percentage = $params->{amount_change_percentage
};
1142 my $amount_change_round_increment = $params->{amount_change_round_increment
};
1143 my $mark_original_budget_as_inactive =
1144 $params->{mark_original_budget_as_inactive
} || 0;
1145 my $reset_all_budgets = $params->{reset_all_budgets
} || 0;
1147 my $budget_period = GetBudgetPeriod
($budget_period_id);
1149 $budget_period->{budget_period_startdate
} = $budget_period_startdate;
1150 $budget_period->{budget_period_enddate
} = $budget_period_enddate;
1151 $budget_period->{budget_period_description
} = $budget_period_description;
1152 # The new budget (budget_period) should be active by default
1153 $budget_period->{budget_period_active
} = 1;
1155 if ($amount_change_percentage) {
1156 my $total = $budget_period->{budget_period_total
};
1157 $total += $total * $amount_change_percentage / 100;
1158 $total = _round
($total, $amount_change_round_increment);
1159 $budget_period->{budget_period_total
} = $total;
1162 my $original_budget_period_id = $budget_period->{budget_period_id
};
1163 delete $budget_period->{budget_period_id
};
1164 my $new_budget_period_id = AddBudgetPeriod
( $budget_period );
1166 my $budgets = GetBudgetHierarchy
($budget_period_id);
1167 CloneBudgetHierarchy
(
1169 budgets
=> $budgets,
1170 new_budget_period_id
=> $new_budget_period_id
1174 if ($mark_original_budget_as_inactive) {
1177 budget_period_id
=> $budget_period_id,
1178 budget_period_active
=> 0,
1183 if ( $reset_all_budgets ) {
1184 my $budgets = GetBudgets
({ budget_period_id
=> $new_budget_period_id });
1185 for my $budget ( @
$budgets ) {
1186 $budget->{budget_amount
} = 0;
1187 ModBudget
( $budget );
1189 } elsif ($amount_change_percentage) {
1190 my $budgets = GetBudgets
({ budget_period_id
=> $new_budget_period_id });
1191 for my $budget ( @
$budgets ) {
1192 my $amount = $budget->{budget_amount
};
1193 $amount += $amount * $amount_change_percentage / 100;
1194 $amount = _round
($amount, $amount_change_round_increment);
1195 $budget->{budget_amount
} = $amount;
1196 ModBudget
( $budget );
1200 return $new_budget_period_id;
1203 =head2 CloneBudgetHierarchy
1205 CloneBudgetHierarchy({
1206 budgets => $budgets,
1207 new_budget_period_id => $new_budget_period_id;
1210 Clone a budget hierarchy.
1214 sub CloneBudgetHierarchy
{
1216 my $budgets = $params->{budgets
};
1217 my $new_budget_period_id = $params->{new_budget_period_id
};
1218 next unless @
$budgets or $new_budget_period_id;
1220 my $children_of = $params->{children_of
};
1221 my $new_parent_id = $params->{new_parent_id
};
1223 my @first_level_budgets =
1224 ( not defined $children_of )
1225 ?
map { ( not $_->{budget_parent_id
} ) ?
$_ : () } @
$budgets
1226 : map { ( defined $_->{budget_parent_id
} && $_->{budget_parent_id
} == $children_of ) ?
$_ : () } @
$budgets;
1228 # get only the columns of aqbudgets
1229 my @columns = Koha
::Database
->new()->schema->source('Aqbudget')->columns;
1231 for my $budget ( sort { $a->{budget_id
} <=> $b->{budget_id
} }
1232 @first_level_budgets )
1236 { map { join( ' ', @columns ) =~ /$_/ ?
( $_ => $budget->{$_} ) : () }
1238 delete $tidy_budget->{timestamp
};
1239 my $new_budget_id = AddBudget
(
1243 budget_parent_id
=> $new_parent_id,
1244 budget_period_id
=> $new_budget_period_id
1247 CloneBudgetHierarchy
(
1249 budgets
=> $budgets,
1250 new_budget_period_id
=> $new_budget_period_id,
1251 children_of
=> $budget->{budget_id
},
1252 new_parent_id
=> $new_budget_id
1260 my $report = MoveOrders({
1261 from_budget_period_id => $from_budget_period_id,
1262 to_budget_period_id => $to_budget_period_id,
1265 Move orders from one budget period to another.
1271 my $from_budget_period_id = $params->{from_budget_period_id
};
1272 my $to_budget_period_id = $params->{to_budget_period_id
};
1273 my $move_remaining_unspent = $params->{move_remaining_unspent
};
1275 if not $from_budget_period_id
1276 or not $to_budget_period_id
1277 or $from_budget_period_id == $to_budget_period_id;
1279 # Can't move orders to an inactive budget (budgetperiod)
1280 my $budget_period = GetBudgetPeriod
($to_budget_period_id);
1281 return unless $budget_period->{budget_period_active
};
1284 my $dbh = C4
::Context
->dbh;
1285 my $sth_update_aqorders = $dbh->prepare(
1289 WHERE ordernumber
= ?
1292 my $sth_update_budget_amount = $dbh->prepare(
1295 SET budget_amount
= ?
1299 my $from_budgets = GetBudgetHierarchy
($from_budget_period_id);
1300 for my $from_budget (@
$from_budgets) {
1301 my $new_budget_id = $dbh->selectcol_arrayref(
1305 WHERE budget_period_id
= ?
1307 |, {}, $to_budget_period_id, $from_budget->{budget_code
}
1309 $new_budget_id = $new_budget_id->[0];
1310 my $new_budget = GetBudget
( $new_budget_id );
1311 unless ( $new_budget ) {
1315 budget
=> $from_budget,
1316 error
=> 'budget_code_not_exists',
1320 my $orders_to_move = C4
::Acquisition
::SearchOrders
(
1322 budget_id
=> $from_budget->{budget_id
},
1328 for my $order (@
$orders_to_move) {
1329 $sth_update_aqorders->execute( $new_budget->{budget_id
}, $order->{ordernumber
} );
1330 push @orders_moved, $order;
1333 my $unspent_moved = 0;
1334 if ($move_remaining_unspent) {
1335 my $spent = GetBudgetHierarchySpent
( $from_budget->{budget_id
} );
1336 my $unspent = $from_budget->{budget_amount
} - $spent;
1337 my $new_budget_amount = $new_budget->{budget_amount
};
1338 if ( $unspent > 0 ) {
1339 $new_budget_amount += $unspent;
1340 $unspent_moved = $unspent;
1342 $new_budget->{budget_amount
} = $new_budget_amount;
1343 $sth_update_budget_amount->execute( $new_budget_amount,
1344 $new_budget->{budget_id
} );
1349 budget
=> $new_budget,
1350 orders_moved
=> \
@orders_moved,
1352 unspent_moved
=> $unspent_moved,
1358 END { } # module clean-up code here (global destructor)
1365 Koha Development Team <http://koha-community.org/>