From a265c5e4366136c5122135ac5397fe8b7f983cd7 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 13 Oct 2017 09:03:25 +0200 Subject: [PATCH] Bug 19296: (QA Follow-up) Correct comment in populate_orders Content-Type: text/plain; charset=utf-8 Just replacing a wrong - by a correct + sign in the comment. The code itself is fine. Signed-off-by: Marcel de Rooy --- C4/Acquisition.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Acquisition.pm b/C4/Acquisition.pm index 950498e..43e46db 100644 --- a/C4/Acquisition.pm +++ b/C4/Acquisition.pm @@ -2965,7 +2965,7 @@ sub populate_order_with_prices { # ecost tax excluded = rrp tax excluded * ( 1 - discount ) $order->{ecost_tax_excluded} = $order->{rrp_tax_excluded} * ( 1 - $discount ); - # ecost tax included = rrp tax excluded * ( 1 - tax rate ) * ( 1 - discount ) + # ecost tax included = rrp tax excluded * ( 1 + tax rate ) * ( 1 - discount ) $order->{ecost_tax_included} = $order->{rrp_tax_excluded} * ( 1 + $order->{tax_rate_on_ordering} ) * -- 2.1.4