浏览代码

Processus de commande

feature/export_comptable
Fab 4 年前
父节点
当前提交
7b83af65d3
共有 1 个文件被更改,包括 6 次插入3 次删除
  1. +6
    -3
      ShopBundle/Repository/OrderShopRepository.php

+ 6
- 3
ShopBundle/Repository/OrderShopRepository.php 查看文件

@@ -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();
}



正在加载...
取消
保存