From 188865563e3be7a62d968e1dff2f67fca5989848 Mon Sep 17 00:00:00 2001 From: Karol Radziuk Date: Tue, 28 Oct 2014 09:20:41 +0100 Subject: [PATCH] Fix EZP-23530 Shipping VAT value is not taken into account --- kernel/shop/ezshopoperationcollection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/shop/ezshopoperationcollection.php b/kernel/shop/ezshopoperationcollection.php index 2b8ca36f0ba..287fd9e2198 100644 --- a/kernel/shop/ezshopoperationcollection.php +++ b/kernel/shop/ezshopoperationcollection.php @@ -239,7 +239,7 @@ function handleShipping( $orderID ) $orderItem = new eZOrderItem( array( 'order_id' => $orderID, 'description' => $shippingInfo['description'], 'price' => $shippingInfo['cost'], - 'vat' => $shippingInfo['vat_value'], + 'vat_value' => $shippingInfo['vat_value'], 'is_vat_inc' => $shippingInfo['is_vat_inc'], 'type' => 'ezcustomshipping' ) ); $orderItem->store();