Open seegrand opened 2 months ago
When a cart price rule is used, the coupon can include free shipping. In this case the shipping discount is not subtracted from the shipping amount and shipping costs are tracked when they are in fact free.
Applicable classes:
\Yireo\GoogleTagManager2\DataLayer\Event\Refund
\Yireo\GoogleTagManager2\DataLayer\Event\Purchase
\Yireo\GoogleTagManager2\DataLayer\Mapper\OrderDataMapper
\Yireo\GoogleTagManager2\DataLayer\Tag\Order\Order
To get the correct price $order->getShippingDiscountAmount() should be subtracted from $order->getShippingAmount().
$order->getShippingDiscountAmount()
$order->getShippingAmount()
When a cart price rule is used, the coupon can include free shipping. In this case the shipping discount is not subtracted from the shipping amount and shipping costs are tracked when they are in fact free.
Applicable classes:
\Yireo\GoogleTagManager2\DataLayer\Event\Refund
\Yireo\GoogleTagManager2\DataLayer\Event\Purchase
\Yireo\GoogleTagManager2\DataLayer\Mapper\OrderDataMapper
\Yireo\GoogleTagManager2\DataLayer\Tag\Order\Order
To get the correct price
$order->getShippingDiscountAmount()
should be subtracted from$order->getShippingAmount()
.