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 139-146 Acquisitions › Koha Link Here
139
139
140
140
141
[% IF op == 'select' && ( result_order_loop || selected_order_loop ) %]
141
[% IF op == 'select' && ( result_order_loop || selected_order_loop ) %]
142
    <div id="xxx">
142
<form method="post" action="/cgi-bin/koha/acqui/duplicate_orders.pl">
143
        <form method="post" action="/cgi-bin/koha/acqui/duplicate_orders.pl">
143
    <div id="orders_to_copy" class="page-section">
144
        <table id="table_orders">
144
        <table id="table_orders">
145
            <caption>
145
            <caption>
146
                <span class="actions"><a href="#" id="select_all"><i class="fa fa-check"></i> Select all</a>
146
                <span class="actions"><a href="#" id="select_all"><i class="fa fa-check"></i> Select all</a>
Lines 176-188 Acquisitions &rsaquo; Koha Link Here
176
            [% END %]
176
            [% END %]
177
            </tbody>
177
            </tbody>
178
        </table>
178
        </table>
179
        <fieldset class="action">
180
            <input type="hidden" name="op" value="batch_edit" />
181
            <input type="hidden" name="basketno" value="[% basket.basketno | html %]" />
182
            <button type="submit" class="btn btn-default go_to_batch_edit">Next <i class="fa fa-fw fa-arrow-right"></i></button>
183
        </fieldset>
184
        </form>
185
    </div>
179
    </div>
180
    <fieldset class="action">
181
        <input type="hidden" name="op" value="batch_edit" />
182
        <input type="hidden" name="basketno" value="[% basket.basketno | html %]" />
183
        <button type="submit" class="btn btn-primary go_to_batch_edit">Next <i class="fa fa-fw fa-arrow-right"></i></button>
184
    </fieldset>
185
</form>
186
186
187
[% ELSIF op == "batch_edit" %]
187
[% ELSIF op == "batch_edit" %]
188
188
Lines 260-266 Acquisitions &rsaquo; Koha Link Here
260
        <input type="hidden" name="basketno" value="[% basket.basketno | html %]" />
260
        <input type="hidden" name="basketno" value="[% basket.basketno | html %]" />
261
        <!-- origquantityrec only here for javascript compatibility (additem.js needs it, useless here, useful when receiveing an order -->
261
        <!-- origquantityrec only here for javascript compatibility (additem.js needs it, useless here, useful when receiveing an order -->
262
        <input id="origquantityrec" readonly="readonly" type="hidden" name="origquantityrec" value="1" />
262
        <input id="origquantityrec" readonly="readonly" type="hidden" name="origquantityrec" value="1" />
263
        <button type="submit" class="btn btn-default">Duplicate orders</button>
263
        <button type="submit" class="btn btn-primary">Duplicate orders</button>
264
        <a class="cancel" href="/cgi-bin/koha/acqui/duplicate_orders.pl?basketno=[% basket.basketno | html %]">Cancel</a>
264
        <a class="cancel" href="/cgi-bin/koha/acqui/duplicate_orders.pl?basketno=[% basket.basketno | html %]">Cancel</a>
265
    </fieldset>
265
    </fieldset>
266
</form>
266
</form>
267
- 

Return to bug 33082