diff --git a/Service/Cart.php b/Service/Cart.php index 698cfc2..88c6d6f 100644 --- a/Service/Cart.php +++ b/Service/Cart.php @@ -207,7 +207,7 @@ public function getAddToCartRequest(string $sku, $qty, $discount = null) } if (is_numeric($parentProductId)) { - $parentProduct = $this->productRepository->getById($parentProductId, false, $storeId); + $parentProduct = $this->productRepository->getById($parentProductId, false, $storeId, true); $addToCartParams['product'] = $parentProduct->getId();