select( 'SUM(DISTINCT(orderShop.statTotalWithTax)) as total' ); } public function selectSumQuantityOrder(): self { $this->joinOrderProducts(); return $this ->select( 'SUM(orderProducts.quantityOrder) as quantity' ); } public function selectSum(): self { $this->joinProduct(); $this->joinDistribution(); return $this ->select( 'SUM(orderProducts.quantityOrder) as quantity, distribution.cycleNumber as cycleNumber, distribution.year as year , product.id as productId' ); } public function selectCountUser(): self { return $this ->select('count(DISTINCT(orderShop.user)) as total'); } // @TODO : nécessaire ? public function selectParam($select): self { return $this ->addSelect($select); } public function selectCount(): self { return $this ->select('count(DISTINCT(orderShop.id)) as total'); } public function joinUser(): self { if (!$this->isJoinUser) { $this->isJoinUser = true; return $this ->leftJoin('.user', 'user'); } return $this; } public function filterByUser(UserInterface $user): self { return $this ->andWhere('.user = :user') ->setParameter('user', $user); } public function filterByUserEmail(string $email): self { $this->joinUser(); return $this ->andWhere('user.email LIKE :email') ->setParameter('email', $email); } public function filterByUserLastname(string $lastname): self { $this->joinUser(); return $this ->andWhere('user.lastname LIKE :lastname') ->setParameter('lastname', $lastname); } public function filterByUserFirstname(string $firstname): self { $this->joinUser(); return $this ->andWhere('user.firstname LIKE :firstname') ->setParameter('firstname', $firstname); } public function filterByAlias(array $status): self { $this->joinOrderStatus(); return $this ->andWhere('orderStatus.alias IN (:alias)') ->setParameter('alias', $status); } public function filterByDistributionData(string $cycleType, int $cycleNumber, int $year){ $this->joinDistribution(); return $this ->andWhere('distribution.cycleType LIKE :cycleType') ->andWhere('distribution.cycleNumber LIKE :cycleNumber') ->andWhere('distribution.year LIKE :year') ->setParameter('cycleType', $cycleType) ->setParameter('cycleNumber', $cycleNumber) ->setParameter('year', $year); } public function filterByDistributions(array $distributionArray): self { return $this ->andWhere('.distribution IN (:distributions)') ->setParameter('distributions', $distributionArray); } public function filterByProducts(array $products): self { $this->joinOrderProducts(); return $this ->andWhere('product.id IN(:products)') ->setParameter('products', $products); } public function filterByProduct(ProductInterface $product): self { $this->joinProduct(); return $this ->andWhere('orderProducts.product = :product') ->setParameter('product', $product); } public function filterIsMerchantOnline(): self { $this->joinMerchant(); return $this ->andWhere('merchant.status = :status') ->setParameter(':status', 1); } public function filterByDateStart(string $dateField, DateTime $dateStart): self { return $this ->andWhere('.' . $dateField . ' >= :dateStart') ->setParameter('dateStart', $dateStart); } public function filterByDateEnd(string $dateField, DateTime $dateEnd): self { return $this ->andWhere('.' . $dateField . ' <= :dateEnd') ->setParameter('dateEnd', $dateEnd); } public function filterByVisitor(VisitorInterface $visitor): self { return $this->andWhereEqual('visitor', $visitor); } public function filterByAddress(AddressInterface $address): self { return $this ->andWhere('.deliveryAddress = :address OR .invoiceAddress = :address') ->setParameter('address', $address); } public function filterByStatus(array $statusArray): self { $this->joinOrderStatus(); // TODO: Voir pour faire mieux // On fait qu'une seule fois le filtre if (!$this->isFilteredByStatus) { $this->isFilteredByStatus = true; return $this ->andWhere('orderStatus.alias IN (:alias)') ->setParameter('alias', $statusArray); } return $this; } public function filterByReductionCredit(ReductionCreditInterface $reductionCredit): self { $this->joinOrderReductionCredits(); return $this ->andWhere('orderReductionCredits.reductionCredit = :reductionCredit') ->setParameter('reductionCredit', $reductionCredit); } public function filterByReductionCart(ReductionCartInterface $reductionCart): self { $this->joinOrderReductionCarts(); return $this ->andWhere('orderReductionCarts.reductionCart = :reductionCart') ->setParameter('reductionCart', $reductionCart); } public function filterByDistribution(DistributionInterface $distribution): self { return $this ->andWhere('.distribution = :distribution') ->setParameter('distribution', $distribution); } public function filterByMeanPayment(string $meanPayment): self { $this->joinOrderPayment(); return $this ->andWhere('orderPayments.meanPayment = :meanPayment') ->setParameter('meanPayment', $meanPayment); } public function filterByDeliveryType(string $deliveryType): self { return $this ->andWhere('.deliveryType = :deliveryType') ->setParameter('deliveryType', $deliveryType); } public function filterIsNotComplementaryOrderShop(): self { return $this->andWhere('.mainOrderShop = false OR .mainOrderShop IS NULL'); } public function filterIsComplementaryOrderShop(): self { return $this->andWhere('.mainOrderShop = true OR .mainOrderShop IS NOT NULL'); } public function filterSectionMainOrderShop(SectionInterface $section) { $this->joinMainOrderShop(); return $this ->andWhere('mainOrderShop.section = :sectionMainOrderShop') ->setParameter('sectionMainOrderShop', $section); } public function filterIsNullMainOrderShop(): self { return $this ->andWhere('.mainOrderShop IS NULL'); } public function filterMinimumTomorrowDelivery(): self { return $this->andWhere('.deliveryDate > :today')->setParameter('today', (new DateTime())->setTime(23, 59)); } public function filterHasOrderProducts() { return $this->andWhere('orderShop.orderProducts IS NOT EMPTY'); } public function selectOrderReductionCarts(): self { $this->joinOrderReductionCarts(); return $this->addSelect('orderReductionCarts'); } public function joinOrderProducts(bool $addSelect = false): self { if (!$this->isJoinOrderProducts) { $this->isJoinOrderProducts = true; $this->leftJoin('.orderProducts', 'orderProducts'); if ($addSelect) { $this->addSelect('orderProducts'); } } return $this; } public function joinProduct(bool $addSelect = false): self { $this->joinOrderProducts($addSelect); if (!$this->isJoinProduct) { $this->isJoinProduct = true; $this->leftJoin('orderProducts.product', 'product'); if ($addSelect) { $this->addSelect('product'); } } return $this; } public function joinDistribution(bool $addSelect = false): self { if (!$this->isJoinDistribution) { $this->isJoinDistribution = true; $this->leftJoin('.distribution', 'distribution'); if ($addSelect) { $this->addSelect('distribution'); } } return $this; } public function joinProductFamily(bool $addSelect = false): self { $this->joinProduct($addSelect); if (!$this->isJoinProductFamily) { $this->isJoinProductFamily = true; $this->leftJoin('product.productFamily', 'productFamily'); if ($addSelect) { $this->addSelect('productFamily'); } } return $this; } public function joinOrderReductionCredits(): self { if (!$this->isJoinOrderReductionCredits) { $this->isJoinOrderReductionCredits = true; return $this ->innerJoin('.orderReductionCredits', 'orderReductionCredits'); } return $this; } public function joinOrderStatus(): self { if (!$this->isJoinOrderStatus) { $this->isJoinOrderStatus = true; return $this ->leftJoin('.orderStatus', 'orderStatus'); } return $this; } public function joinOrderReductionCarts(): self { if (!$this->isJoinOrderReductionCarts) { $this->isJoinOrderReductionCarts = true; return $this ->leftJoin('.orderReductionCarts', 'orderReductionCarts'); } return $this; } public function joinMerchant(): self { $this->joinSection(); if (!$this->isJoinMerchant) { $this->isJoinMerchant = true; return $this ->leftJoin('s.merchant', 'merchant'); } return $this; } public function joinComplementaryOrderShops(): self { if (!$this->isJoinComplementaryOrderShops) { $this->isJoinComplementaryOrderShops = true; return $this ->leftJoin('.complementaryOrderShops', 'complementaryOrderShops'); } return $this; } public function joinDeliveryPointSale(): self { if (!$this->isJoinDeliveryPointSale) { $this->isJoinDeliveryPointSale = true; return $this ->leftJoin('.deliveryPointSale', 'deliveryPointSale'); } return $this; } public function joinOrderPayment(): self { if (!$this->isJoinOrderPayment) { $this->isJoinOrderPayment = true; return $this ->leftJoin('.orderPayments', 'orderPayments'); } return $this; } public function joinMainOrderShop(): self { if (!$this->isJoinMainOrderShop) { $this->isJoinMainOrderShop = true; return $this ->leftJoin('.mainOrderShop', 'mainOrderShop'); } return $this; } }