You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace Lc\CaracoleBundle\Repository\Product;
-
- use Lc\CaracoleBundle\Repository\SectionStoreTrait;
- use Lc\SovBundle\Repository\AbstractStore;
- use Lc\SovBundle\Repository\RepositoryQueryInterface;
-
- class ProductStore extends AbstractStore
- {
- use SectionStoreTrait;
-
- protected ProductRepositoryQuery $query;
-
- public function __construct(ProductRepositoryQuery $query)
- {
- $this->query = $query;
- }
-
- public function orderByDefault(RepositoryQueryInterface $query) :RepositoryQueryInterface
- {
- return $query;
- }
-
- public function filtersDefault($query):RepositoryQueryInterface
- {
- $query->filterIsOnlineAndOffline();
- $query->filterBySection($this->section);
- return $query;
- }
-
- public function relationsDefault($query):RepositoryQueryInterface
- {
- return $query->joinProductFamily();
- }
-
- //findProductByAvailabilitiesNegative
- public function getByAvailabilitiesNegative(ProductRepositoryQuery $query = null): array
- {
- $query = $this->createDefaultQuery($query);
- $query->filterIsOnline();
- $query->filterBehaviorCountStock();
- $query->groupBy('pf.id');
- return $query->find();
- }
-
-
- }
|