Browse Source

Correctif mineur

packProduct
Fabien Normand 2 years ago
parent
commit
0966084fb7
1 changed files with 0 additions and 11 deletions
  1. +0
    -11
      Repository/Order/OrderProductStore.php

+ 0
- 11
Repository/Order/OrderProductStore.php View File

return $query; return $query;
} }


// findGiftVouchersByOrder
public function getGiftVouchersByOrder(OrderShopInterface $orderShop): array
{
$query = $this->createQuery();
$query
->filterByOrderShop($orderShop)
->filterIsGiftVoucherActive();

return $query->find();
}

// findOrderProductsInCartsByProduct // findOrderProductsInCartsByProduct
public function getInCartsByProduct(ProductInterface $product, $query = null): array public function getInCartsByProduct(ProductInterface $product, $query = null): array
{ {

Loading…
Cancel
Save