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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt (-10 / +14 lines)
Lines 8-14 Link Here
8
[% Asset.css("css/humanmsg.css") | $raw %]
8
[% Asset.css("css/humanmsg.css") | $raw %]
9
9
10
<span style="display:none;" id="all_fund_dropdown">
10
<span style="display:none;" id="all_fund_dropdown">
11
    <option value="">No fund</option>
12
    [% FOREACH budget IN budgets %]
11
    [% FOREACH budget IN budgets %]
13
        [% IF ( budget.b_active ) %]
12
        [% IF ( budget.b_active ) %]
14
            <option value="[% budget.b_id | html %]" data-sort1-authcat="[% budget.b_sort1_authcat | html %]" data-sort2-authcat="[% budget.b_sort2_authcat | html %]">[% budget.b_txt | html %]</option>
13
            <option value="[% budget.b_id | html %]" data-sort1-authcat="[% budget.b_sort1_authcat | html %]" data-sort2-authcat="[% budget.b_sort2_authcat | html %]">[% budget.b_txt | html %]</option>
Lines 36-49 Link Here
36
            </div>
35
            </div>
37
            <div class="modal-body">
36
            <div class="modal-body">
38
                <p>Updating the fund may change available statistics for the order, please check values before submitting.</p>
37
                <p>Updating the fund may change available statistics for the order, please check values before submitting.</p>
39
                [% PROCESS fund_dropdown form_id => 'modify_budget_id' form_name => 'modify_budget_id' selected => "" %]
38
                <fieldset class="rows">
40
                </br>
39
                <ol>
41
                <label for="sort1">Statistic 1</label>
40
                    <li>[% PROCESS fund_dropdown form_id => 'modify_budget_id' form_name => 'modify_budget_id' selected => "" %]</li>
42
                <input type="text" name="sort1" />
41
                    <li>
43
                </br>
42
                        <label for="sort1">Statistic 1: </label>
44
                <label for="sort2">Statistic 2</label>
43
                        <input type="text" name="sort1" />
45
                <input type="text" name="sort2" />
44
                    </li>
46
                <br><a id="update_fund" class="btn btn-default">Update fund</a>
45
                    <li>
46
                        <label for="sort2">Statistic 2: </label>
47
                        <input type="text" name="sort2" />
48
                    </li>
49
                </ol>
50
                </fieldset>
51
                <a id="update_fund" class="btn btn-default">Update fund</a>
47
            </div>
52
            </div>
48
            <div class="modal-footer">
53
            <div class="modal-footer">
49
                <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
54
                <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
50
- 

Return to bug 25763