From 9b2e3971b603fc58e8bf7ab8ad4b902257d0e1e4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 9 Jan 2020 17:28:09 +0100 Subject: [PATCH] Bug 24162: Add quantity column to the late orders page This patch add a new column "quantity" to the late orders page Test plan: 1. Create some orders, close the basket 2. Go to the "Late orders" page => You should see a new column "quantity" that contains the number of items of the order Sponsored-by: Cork Institute of Technology Signed-off-by: Devinim --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt index ddf3abeb04..c40c638359 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt @@ -63,6 +63,7 @@ Estimated delivery date Vendor Information + Quantity Total cost Basket Basket group @@ -107,6 +108,7 @@ [% END %] [% END %] + [% lateorder.quantity %] [% SET subtotal = (lateorder.quantity - lateorder.quantityreceived) * lateorder.rrp %] [% SET total = total + subtotal %] @@ -174,7 +176,7 @@ Total [% total | $Price %] -   +   -- 2.11.0