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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-1 / +3 lines)
Lines 416-421 $(document).ready(function() Link Here
416
                <label class="required" for="budget_id">Fund: </label>
416
                <label class="required" for="budget_id">Fund: </label>
417
                <select id="budget_id" onchange="fetchSortDropbox(this.form)" size="1" name="budget_id">
417
                <select id="budget_id" onchange="fetchSortDropbox(this.form)" size="1" name="budget_id">
418
                        <option value="">Select a fund</option>
418
                        <option value="">Select a fund</option>
419
                [% IF budget_loop.size == 1 %]
420
                    [% budget_loop.first.b_sel = 1 %]
421
                [% END %]
419
                [% FOREACH budget_loo IN budget_loop %]
422
                [% FOREACH budget_loo IN budget_loop %]
420
                    [% IF ( budget_loo.b_sel ) %]
423
                    [% IF ( budget_loo.b_sel ) %]
421
                        <option value="[% budget_loo.b_id %]" selected="selected">[% budget_loo.b_txt %]</option>
424
                        <option value="[% budget_loo.b_id %]" selected="selected">[% budget_loo.b_txt %]</option>
422
- 

Return to bug 9088