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

(-)a/acqui/invoice.pl (+2 lines)
Lines 279-284 foreach my $order (@$orders) { Link Here
279
279
280
    $line->{orderline} = $line->{parent_ordernumber};
280
    $line->{orderline} = $line->{parent_ordernumber};
281
    $has_invoice_unitprice = 1 if $line->{invoice_currency} ne $active_currency->currency;
281
    $has_invoice_unitprice = 1 if $line->{invoice_currency} ne $active_currency->currency;
282
    $foot{ $$line{tax_rate} }{invoice_currencies}{ $line->{invoice_currency} } += $line->{invoice_unitprice};
283
282
    push @orders_loop, $line;
284
    push @orders_loop, $line;
283
}
285
}
284
286
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt (-2 / +5 lines)
Lines 400-406 Link Here
400
                        <tr>
400
                        <tr>
401
                            <th colspan="2">Total (GST [% tf.tax_rate * 100 | html %] %)</th>
401
                            <th colspan="2">Total (GST [% tf.tax_rate * 100 | html %] %)</th>
402
                            [% IF has_invoice_unitprice %]
402
                            [% IF has_invoice_unitprice %]
403
                                <th></th>
403
                                <th class="total_invoice_currencies">
404
                                    [% FOREACH total IN tf.invoice_currencies %]
405
                                        <span id="total_[% total.key | html %]">[% total.value | $Price %] [% total.key | html %]</span>
406
                                    [% END %]
407
                                </th>
404
                            [% END %]
408
                            [% END %]
405
                            <th class="tax_excluded"></th>
409
                            <th class="tax_excluded"></th>
406
                            <th class="tax_included"></th>
410
                            <th class="tax_included"></th>
407
- 

Return to bug 40537