Explorar el Código

Processus de commande

feature/export_comptable
Fab hace 4 años
padre
commit
7b83af65d3
Se han modificado 1 ficheros con 6 adiciones y 3 borrados
  1. +6
    -3
      ShopBundle/Repository/OrderShopRepository.php

+ 6
- 3
ShopBundle/Repository/OrderShopRepository.php Ver fichero

@@ -28,34 +28,37 @@ class OrderShopRepository extends BaseRepository implements DefaultRepositoryInt
public function countValidOrderWithReductionCredit($reductionCredit, $user){
$query = $this->findByMerchantQuery();
$query = $this->filterOrderValid($query);
$query->select('count(e.id)');
$query->andWhere('e.user = :user');
$query->leftJoin('e.orderReductionCredits', 'orc');
$query->andWhere('orc.reductionCredit = :reductionCredit');
$query->setParameter('reductionCredit', $reductionCredit);
$query->setParameter('user', $user);
return $query->getQuery()->getScalarResult();
return $query->getQuery()->getSingleScalarResult();
}


public function countValidOrderWithReductionCart($reductionCart){
$query = $this->findByMerchantQuery();
$query = $this->filterOrderValid($query);
$query->select('count(e.id)');
$query->leftJoin('e.orderReductionCart', 'orc');
$query->andWhere('orc.reductionCart = :reductionCart');
$query->setParameter('reductionCart', $reductionCart);
return $query->getQuery()->getScalarResult();
return $query->getQuery()->getSingleScalarResult();
}


public function countValidOrderWithReductionCartPerUser($reductionCart, $user){
$query = $this->findByMerchantQuery();
$query = $this->filterOrderValid($query);
$query->select('count(e.id)');
$query->andWhere('e.user = :user');
$query->leftJoin('e.orderReductionCart', 'orc');
$query->andWhere('orc.reductionCart = :reductionCart');
$query->setParameter('reductionCart', $reductionCart);
$query->setParameter('user', $user);
return $query->getQuery()->getScalarResult();
return $query->getQuery()->getSingleScalarResult();
}



Cargando…
Cancelar
Guardar