@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt @@ -50,6 +50,7 @@

[% END %] [% SET total = 0 %] + [% SET total_quantity = 0 %] [% IF bookseller_filter %]

Check all Uncheck all

[% END %] @@ -108,7 +109,10 @@ [% END %] [% END %] - [% lateorder.quantity | html %] + + [% lateorder.quantity | html %] + [% SET total_quantity = total_quantity + lateorder.quantity %] + [% SET subtotal = (lateorder.quantity - lateorder.quantityreceived) * lateorder.rrp %] [% SET total = total + subtotal %] @@ -176,14 +180,14 @@ Total + [% total_quantity | html %] [% total | $Price %]   -
-

+

Export as CSV @@ -198,7 +202,7 @@
-

+
[% ELSE %]

There are no late orders.

[% END %] --