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

(-)a/acqui/parcel.pl (+1 lines)
Lines 285-290 $template->param( Link Here
285
    formatteddatereceived => $datereceived->output(),
285
    formatteddatereceived => $datereceived->output(),
286
    name                  => $bookseller->{'name'},
286
    name                  => $bookseller->{'name'},
287
    booksellerid          => $bookseller->{id},
287
    booksellerid          => $bookseller->{id},
288
    invoiceincgst         => $bookseller->{invoiceincgst},
288
    loop_received         => \@loop_received,
289
    loop_received         => \@loop_received,
289
    loop_orders           => \@loop_orders,
290
    loop_orders           => \@loop_orders,
290
    book_foot_loop        => \@book_foot_loop,
291
    book_foot_loop        => \@book_foot_loop,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-2 / +5 lines)
Lines 347-353 Link Here
347
    <tfoot>
347
    <tfoot>
348
        [% FOREACH key IN subtotal_for_funds.keys.sort %]
348
        [% FOREACH key IN subtotal_for_funds.keys.sort %]
349
            <tr>
349
            <tr>
350
                <td colspan="6" class="total">(Tax exc.)</td>
350
                [% IF invoiceincgst %]
351
                    <td colspan="6" class="total">(Tax inc.)</td>
352
                [% ELSE %]
353
                    <td colspan="6" class="total">(Tax exc.)</td>
354
                [% END %]
351
                <td colspan="2"><i>Subtotal for</i> [% key %]</td>
355
                <td colspan="2"><i>Subtotal for</i> [% key %]</td>
352
                <td>[% subtotal_for_funds.$key.ecost | $Price %]</td>
356
                <td>[% subtotal_for_funds.$key.ecost | $Price %]</td>
353
                <td>[% subtotal_for_funds.$key.unitprice | $Price  %]</td>
357
                <td>[% subtotal_for_funds.$key.unitprice | $Price  %]</td>
354
- 

Return to bug 13320