diff --git a/src/CoreShop/Component/Core/Tracking/Extractor/OrderItemExtractor.php b/src/CoreShop/Component/Core/Tracking/Extractor/OrderItemExtractor.php index 03078c2b3a..0539eff6d4 100644 --- a/src/CoreShop/Component/Core/Tracking/Extractor/OrderItemExtractor.php +++ b/src/CoreShop/Component/Core/Tracking/Extractor/OrderItemExtractor.php @@ -57,7 +57,7 @@ public function updateMetadata($object, $data = []): array 'sku' => $product instanceof ProductInterface ? $product->getSku() : '', 'name' => $product instanceof PurchasableInterface ? $product->getName() : '', 'category' => (is_array($categories) && count($categories) > 0) ? $categories[0]->getName() : '', - 'price' => $object->getTotal() / 100, + 'price' => $object->getItemPrice() / 100, 'quantity' => $object->getQuantity(), 'currency' => $proposal ? $proposal->getCurrency()->getIsoCode() : '', ]);