Преглед изворни кода

[Frontoffice] Bug code reduction

feature/export_comptable
Fab пре 4 година
родитељ
комит
83ae5f549c
1 измењених фајлова са 2 додато и 2 уклоњено
  1. +2
    -2
      ShopBundle/Repository/ReductionCartRepository.php

+ 2
- 2
ShopBundle/Repository/ReductionCartRepository.php Прегледај датотеку

@@ -29,11 +29,11 @@ class ReductionCartRepository extends BaseRepository implements DefaultRepositor
return ReductionCartInterface::class;
}

public function findOneByCode($code)
public function findByCode($code)
{
$query = $this->findByMerchantQuery() ;
$query->andWhere('e.codes LIKE :code')->setParameter('code', '%'.$code.'%') ;
return $query->getQuery()->getOneOrNullResult() ;
return $query->getQuery()->getResult() ;
}

public function getValuesOfFieldType(){

Loading…
Откажи
Сачувај