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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/duplicate_orders.tt (-10 / +9 lines)
Lines 132-139 Acquisitions › Koha Link Here
132
132
133
133
134
[% IF op == 'select' && ( result_order_loop || selected_order_loop ) %]
134
[% IF op == 'select' && ( result_order_loop || selected_order_loop ) %]
135
    <div id="xxx">
135
<form method="post" action="/cgi-bin/koha/acqui/duplicate_orders.pl">
136
        <form method="post" action="/cgi-bin/koha/acqui/duplicate_orders.pl">
136
    <div id="orders_to_copy" class="page-section">
137
        <table id="table_orders">
137
        <table id="table_orders">
138
            <caption>
138
            <caption>
139
                <span class="actions"><a href="#" id="select_all"><i class="fa fa-check"></i> Select all</a>
139
                <span class="actions"><a href="#" id="select_all"><i class="fa fa-check"></i> Select all</a>
Lines 169-181 Acquisitions &rsaquo; Koha Link Here
169
            [% END %]
169
            [% END %]
170
            </tbody>
170
            </tbody>
171
        </table>
171
        </table>
172
        <fieldset class="action">
173
            <input type="hidden" name="op" value="batch_edit" />
174
            <input type="hidden" name="basketno" value="[% basket.basketno | html %]" />
175
            <button type="submit" class="btn btn-default go_to_batch_edit">Next <i class="fa fa-fw fa-arrow-right"></i></button>
176
        </fieldset>
177
        </form>
178
    </div>
172
    </div>
173
    <fieldset class="action">
174
        <input type="hidden" name="op" value="batch_edit" />
175
        <input type="hidden" name="basketno" value="[% basket.basketno | html %]" />
176
        <button type="submit" class="btn btn-primary go_to_batch_edit">Next <i class="fa fa-fw fa-arrow-right"></i></button>
177
    </fieldset>
178
</form>
179
179
180
[% ELSIF op == "batch_edit" %]
180
[% ELSIF op == "batch_edit" %]
181
181
Lines 253-259 Acquisitions &rsaquo; Koha Link Here
253
        <input type="hidden" name="basketno" value="[% basket.basketno | html %]" />
253
        <input type="hidden" name="basketno" value="[% basket.basketno | html %]" />
254
        <!-- origquantityrec only here for javascript compatibility (additem.js needs it, useless here, useful when receiveing an order -->
254
        <!-- origquantityrec only here for javascript compatibility (additem.js needs it, useless here, useful when receiveing an order -->
255
        <input id="origquantityrec" readonly="readonly" type="hidden" name="origquantityrec" value="1" />
255
        <input id="origquantityrec" readonly="readonly" type="hidden" name="origquantityrec" value="1" />
256
        <button type="submit" class="btn btn-default">Duplicate orders</button>
256
        <button type="submit" class="btn btn-primary">Duplicate orders</button>
257
        <a class="cancel" href="/cgi-bin/koha/acqui/duplicate_orders.pl?basketno=[% basket.basketno | html %]">Cancel</a>
257
        <a class="cancel" href="/cgi-bin/koha/acqui/duplicate_orders.pl?basketno=[% basket.basketno | html %]">Cancel</a>
258
    </fieldset>
258
    </fieldset>
259
</form>
259
</form>
260
- 

Return to bug 33082