Skip to content

Commit

Permalink
[framework] Heureka: send order number instead of order id (#3407)
Browse files Browse the repository at this point in the history
  • Loading branch information
sspooky13 authored Sep 20, 2024
1 parent b47a476 commit 49c7d31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Model/Heureka/HeurekaShopCertificationFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function create(Order $order)
$options = ['service' => $languageId];

$heurekaShopCertification = new ShopCertification($heurekaApiKey, $options);
$heurekaShopCertification->setOrderId($order->getId());
$heurekaShopCertification->setOrderId($order->getNumber());
$heurekaShopCertification->setEmail($order->getEmail());

foreach ($order->getProductItems() as $item) {
Expand Down

0 comments on commit 49c7d31

Please sign in to comment.