|
Lines 58-66
my $budget_period_id = $input->param('budget_period_id');
Link Here
|
| 58 |
my $period = GetBudgetPeriod($budget_period_id); |
58 |
my $period = GetBudgetPeriod($budget_period_id); |
| 59 |
my $count = GetPeriodsCount(); |
59 |
my $count = GetPeriodsCount(); |
| 60 |
my $active_currency = Koha::Acquisition::Currencies->get_active; |
60 |
my $active_currency = Koha::Acquisition::Currencies->get_active; |
| 61 |
$template->param( symbol => $active_currency->symbol, |
61 |
if ( $active_currency ) { |
| 62 |
currency => $active_currency->currency, |
62 |
$template->param( symbol => $active_currency->symbol, |
| 63 |
); |
63 |
currency => $active_currency->currency, |
|
|
64 |
); |
| 65 |
} |
| 64 |
$template->param( period_button_only => 1 ) if $count == 0; |
66 |
$template->param( period_button_only => 1 ) if $count == 0; |
| 65 |
|
67 |
|
| 66 |
|
68 |
|
| 67 |
- |
|
|