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

(-)a/ill/ill-requests.pl (-4 / +1 lines)
Lines 119-128 if ( $backends_available ) { Link Here
119
            };
119
            };
120
            $template->param(
120
            $template->param(
121
                whole          => $backend_result,
121
                whole          => $backend_result,
122
                request        => $request,
122
                request        => $request
123
                status_aliases => scalar Koha::AuthorisedValues->search(
124
                    { category => 'ILLSTATUS' }
125
                )
126
            );
123
            );
127
        } else {
124
        } else {
128
            # Commit:
125
            # Commit:
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt (-2 / +2 lines)
Lines 3-8 Link Here
3
[% USE Branches %]
3
[% USE Branches %]
4
[% USE Koha %]
4
[% USE Koha %]
5
[% USE KohaDates %]
5
[% USE KohaDates %]
6
[% USE AuthorisedValues %]
6
7
7
[% INCLUDE 'doc-head-open.inc' %]
8
[% INCLUDE 'doc-head-open.inc' %]
8
<title>Koha &rsaquo; ILL requests  &rsaquo;</title>
9
<title>Koha &rsaquo; ILL requests  &rsaquo;</title>
Lines 442-448 Link Here
442
                                        [% END %]
443
                                        [% END %]
443
                                            [% request.capabilities.$stat.name | html %]
444
                                            [% request.capabilities.$stat.name | html %]
444
                                        </option>
445
                                        </option>
445
                                        [% FOREACH alias IN status_aliases %]
446
                                        [% FOREACH alias IN AuthorisedValues.Get('ILLSTATUS') %]
446
                                            [% IF alias.id == current_alias %]
447
                                            [% IF alias.id == current_alias %]
447
                                            <option value="[% alias.id %]" selected>
448
                                            <option value="[% alias.id %]" selected>
448
                                            [% ELSE %]
449
                                            [% ELSE %]
449
- 

Return to bug 20581