Skip to content

Commit

Permalink
Merge pull request ezsystems#1098 from trolek/fix-EZP-23530
Browse files Browse the repository at this point in the history
Fix EZP-23530 Shipping VAT value is not taken into account
  • Loading branch information
lolautruche committed Oct 29, 2014
2 parents 5bf8433 + 1888655 commit 8b78c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/shop/ezshopoperationcollection.php
Expand Up @@ -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();
Expand Down

0 comments on commit 8b78c64

Please sign in to comment.