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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-3 / +3 lines)
Lines 365-375 $(document).ready(function() Link Here
365
            </li>
365
            </li>
366
            <li>
366
            <li>
367
                [% IF ( close ) %]
367
                [% IF ( close ) %]
368
            <span class="label">Fund: </span>
368
            <span class="label required">Fund: </span>
369
                    <input type="hidden" size="20" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
369
                    <input type="hidden" size="20" name="budget_id" id="budget_id" value="[% budget_id %]" />[% Budget_name %]
370
                [% ELSE %]
370
                [% ELSE %]
371
                <label for="budget_id">Fund: </label>
371
                <label class="required" for="budget_id">Fund: </label>
372
                <select id="budget_id" onchange="fetchSortDropbox(this.form)" size="1" name="budget_id">
372
                <select id="budget_id" onchange="fetchSortDropbox(this.form)" size="1" name="budget_id">
373
                        <option value="">Select a budget</option>
373
                [% FOREACH budget_loo IN budget_loop %]
374
                [% FOREACH budget_loo IN budget_loop %]
374
                    [% IF ( budget_loo.b_sel ) %]
375
                    [% IF ( budget_loo.b_sel ) %]
375
                        <option value="[% budget_loo.b_id %]" selected="selected">[% budget_loo.b_txt %]</option>
376
                        <option value="[% budget_loo.b_id %]" selected="selected">[% budget_loo.b_txt %]</option>
376
- 

Return to bug 7435