diff --git a/src/Services/InfoProviderSystem/Providers/ReicheltProvider.php b/src/Services/InfoProviderSystem/Providers/ReicheltProvider.php index 89ba48d8..62f075ea 100644 --- a/src/Services/InfoProviderSystem/Providers/ReicheltProvider.php +++ b/src/Services/InfoProviderSystem/Providers/ReicheltProvider.php @@ -156,9 +156,9 @@ class ReicheltProvider implements InfoProviderInterface $purchaseInfo = new PurchaseInfoDTO( distributor_name: self::DISTRIBUTOR_NAME, order_number: $json[0]['article_artnr'], - prices: [ - new PriceDTO(1.0, $priceString, $currency, $this->includeVAT) - ] + $this->parseBatchPrices($dom, $currency), + prices: array_merge( + [new PriceDTO(1.0, $priceString, $currency, $this->includeVAT)] + , $this->parseBatchPrices($dom, $currency)), product_url: $productPage );