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

(-)a/acqui/invoice.pl (-7 / +17 lines)
Lines 37-42 use C4::Budgets; Link Here
37
37
38
use Koha::Acquisition::Booksellers;
38
use Koha::Acquisition::Booksellers;
39
use Koha::Acquisition::Currencies;
39
use Koha::Acquisition::Currencies;
40
use Koha::Acquisition::Budgets;
41
use Koha::Acquisition::Budget;
40
use Koha::DateUtils;
42
use Koha::DateUtils;
41
use Koha::Misc::Files;
43
use Koha::Misc::Files;
42
44
Lines 146-163 foreach my $order (@$orders) { Link Here
146
148
147
push @foot_loop, map {$_} values %foot;
149
push @foot_loop, map {$_} values %foot;
148
150
149
my $budgets = GetBudgets();
151
my $budgets = Koha::Acquisition::Budgets->search();
150
my @budgets_loop;
152
my @budgets_loop;
153
my @inactive_budgets_loop;
151
my $shipmentcost_budgetid = $details->{shipmentcost_budgetid};
154
my $shipmentcost_budgetid = $details->{shipmentcost_budgetid};
152
foreach my $budget (@$budgets) {
155
while ( my $budget = $budgets->next ) {
153
    next unless CanUserUseBudget( $loggedinuser, $budget, $flags );
156
    next unless CanUserUseBudget( $loggedinuser, $budget->budget_id, $flags );
154
    my %line = %{$budget};
157
    my $line = $budget->unblessed;
155
    if (    $shipmentcost_budgetid
158
    if (    $shipmentcost_budgetid
156
        and $budget->{budget_id} == $shipmentcost_budgetid )
159
        and $budget->budget_id == $shipmentcost_budgetid )
157
    {
160
    {
158
        $line{selected} = 1;
161
        $line->{selected} = 1;
159
    }
162
    }
160
    push @budgets_loop, \%line;
163
    if ( $budget->active ) {
164
        push @budgets_loop, \%$line;
165
    }
166
    else {
167
        push @inactive_budgets_loop, \%$line;
168
    }
169
161
}
170
}
162
171
163
$template->param(
172
$template->param(
Lines 180-185 $template->param( Link Here
180
    invoiceincgst    => $bookseller->invoiceincgst,
189
    invoiceincgst    => $bookseller->invoiceincgst,
181
    currency         => Koha::Acquisition::Currencies->get_active,
190
    currency         => Koha::Acquisition::Currencies->get_active,
182
    budgets_loop     => \@budgets_loop,
191
    budgets_loop     => \@budgets_loop,
192
    inactive_budgets_loop     => \@inactive_budgets_loop,
183
);
193
);
184
194
185
defined( $invoice_files ) && $template->param( files => $invoice_files->GetFilesInfo() );
195
defined( $invoice_files ) && $template->param( files => $invoice_files->GetFilesInfo() );
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt (-2 / +14 lines)
Lines 93-98 Link Here
93
            <li><label for="shipment_budget_id">Shipping fund:</label>
93
            <li><label for="shipment_budget_id">Shipping fund:</label>
94
                    <select id="shipment_budget_id" name="shipment_budget_id">
94
                    <select id="shipment_budget_id" name="shipment_budget_id">
95
                        <option value="">No fund</option>
95
                        <option value="">No fund</option>
96
                        <optgroup label="Active Budgets">
96
                      [% FOREACH budget IN budgets_loop %]
97
                      [% FOREACH budget IN budgets_loop %]
97
                        [% IF ( budget.selected ) %]
98
                        [% IF ( budget.selected ) %]
98
                          <option selected="selected" value="[% budget.budget_id %]">
99
                          <option selected="selected" value="[% budget.budget_id %]">
Lines 101-107 Link Here
101
                        [% END %]
102
                        [% END %]
102
                          [% budget.budget_name %]
103
                          [% budget.budget_name %]
103
                        </option>
104
                        </option>
104
                      [% END %]
105
                      [% END %]i
106
                        </optgroup>
107
                        <optgroup label="Inactive Budgets">
108
                      [% FOREACH budget IN inactive_budgets_loop %]
109
                        [% IF ( budget.selected ) %]
110
                          <option selected="selected" value="[% budget.budget_id %]">
111
                        [% ELSE %]
112
                          <option value="[% budget.budget_id %]">
113
                        [% END %]
114
                          [% budget.budget_name %]
115
                        </option>
116
                      [% END %]i
117
                      </optgroup>
105
                    </select></li>
118
                    </select></li>
106
119
107
            [% IF ( invoiceclosedate ) %]
120
            [% IF ( invoiceclosedate ) %]
108
- 

Return to bug 14850