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

(-)a/acqui/neworderempty.pl (+1 lines)
Lines 340-345 foreach my $r ( @{$budgets} ) { Link Here
340
    push @{$budget_loop}, {
340
    push @{$budget_loop}, {
341
        b_id            => $r->{budget_id},
341
        b_id            => $r->{budget_id},
342
        b_txt           => $r->{budget_name},
342
        b_txt           => $r->{budget_name},
343
        b_code          => $r->{budget_code},
343
        b_sort1_authcat => $r->{'sort1_authcat'},
344
        b_sort1_authcat => $r->{'sort1_authcat'},
344
        b_sort2_authcat => $r->{'sort2_authcat'},
345
        b_sort2_authcat => $r->{'sort2_authcat'},
345
        b_active        => $r->{budget_period_active},
346
        b_active        => $r->{budget_period_active},
(-)a/admin/file_transports.pl (-2 / +3 lines)
Lines 200-207 if ( $op eq 'list' ) { Link Here
200
}
200
}
201
201
202
$template->param(
202
$template->param(
203
    op       => $op,
203
    sftp_allow_password => C4::Context->config('sftp_allow_password') // 1,
204
    messages => \@messages,
204
    op                  => $op,
205
    messages            => \@messages,
205
);
206
);
206
207
207
output_html_with_http_headers $input, $cookie, $template->output;
208
output_html_with_http_headers $input, $cookie, $template->output;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-3 / +2 lines)
Lines 617-627 Link Here
617
                                    data-sort2-authcat="[% budget_loo.b_sort2_authcat | html %]"
617
                                    data-sort2-authcat="[% budget_loo.b_sort2_authcat | html %]"
618
                                    selected="selected"
618
                                    selected="selected"
619
                                >
619
                                >
620
                                    [% level_indent | html %][% budget_loo.b_txt | html %][% IF !budget_loo.b_active %](inactive)[% END %]
620
                                    [% level_indent | html %]<span class="budget_name">[% budget_loo.b_txt | html %]</span> <span class="budget_code">([% budget_loo.b_code | html %])</span>[% IF !budget_loo.b_active %](inactive)[% END %]
621
                                </option>
621
                                </option>
622
                            [% ELSE %]
622
                            [% ELSE %]
623
                                <option value="[% budget_loo.b_id | html %]" class="[% bdgclass | html %]" data-sort1-authcat="[% budget_loo.b_sort1_authcat | html %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat | html %]">
623
                                <option value="[% budget_loo.b_id | html %]" class="[% bdgclass | html %]" data-sort1-authcat="[% budget_loo.b_sort1_authcat | html %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat | html %]">
624
                                    [% level_indent | html %][% budget_loo.b_txt | html %][% IF !budget_loo.b_active %](inactive)[% END %]
624
                                    [% level_indent | html %]<span class="budget_name">[% budget_loo.b_txt | html %]</span> <span class="budget_code">([% budget_loo.b_code | html %])</span>[% IF !budget_loo.b_active %](inactive)[% END %]
625
                                </option>
625
                                </option>
626
                            [% END %]
626
                            [% END %]
627
                        [% END %]
627
                        [% END %]
628
- 

Return to bug 41553