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

(-)a/acqui/invoice.pl (-2 lines)
Lines 212-218 foreach my $r ( @{$budgets} ) { Link Here
212
212
213
@{$budget_loop} =
213
@{$budget_loop} =
214
  sort { uc( $a->{b_txt} ) cmp uc( $b->{b_txt} ) } @{$budget_loop};
214
  sort { uc( $a->{b_txt} ) cmp uc( $b->{b_txt} ) } @{$budget_loop};
215
warn Data::Dumper::Dumper( $budget_loop );
216
215
217
my $adjustments = Koha::Acquisition::Invoice::Adjustments->search({ invoiceid => $details->{'invoiceid'} });
216
my $adjustments = Koha::Acquisition::Invoice::Adjustments->search({ invoiceid => $details->{'invoiceid'} });
218
if ( $adjustments ) { $template->param( adjustments => $adjustments ); }
217
if ( $adjustments ) { $template->param( adjustments => $adjustments ); }
219
- 

Return to bug 14850