View | Details | Raw Unified | Return to bug 40978
Collapse All | Expand All

(-)a/C4/Budgets.pm (-1 / +2 lines)
Lines 19-24 package C4::Budgets; Link Here
19
19
20
use Modern::Perl;
20
use Modern::Perl;
21
use base 'Exporter';
21
use base 'Exporter';
22
22
BEGIN {
23
BEGIN {
23
    our @EXPORT_OK = qw(
24
    our @EXPORT_OK = qw(
24
25
Lines 752-757 sub GetBudgetHierarchy { Link Here
752
            SELECT shipmentcost_budgetid as budget_id,
753
            SELECT shipmentcost_budgetid as budget_id,
753
                SUM(shipmentcost) as shipmentcost
754
                SUM(shipmentcost) as shipmentcost
754
            FROM aqinvoices
755
            FROM aqinvoices
756
            WHERE shipmentcost_budgetid IS NOT NULL
755
            GROUP BY shipmentcost_budgetid
757
            GROUP BY shipmentcost_budgetid
756
            |, 'budget_id'
758
            |, 'budget_id'
757
        );
759
        );
758
- 

Return to bug 40978