소스 검색

Prix

feature/export_comptable
Guillaume 4 년 전
부모
커밋
f641ec72fb
1개의 변경된 파일12개의 추가작업 그리고 1개의 파일을 삭제
  1. +12
    -1
      ShopBundle/Services/Price/PriceUtils.php

+ 12
- 1
ShopBundle/Services/Price/PriceUtils.php 파일 보기

@@ -39,7 +39,18 @@ class PriceUtils implements PriceUtilsInterface
}

if(strlen($service) && $entity && method_exists($this->$service, $name)) {
return $this->$service->$name($entity) ;
if(isset($arguments[1]) && isset($arguments[2]) && isset($arguments[3])) {
return $this->$service->$name($entity, $arguments[1], $arguments[2], $arguments[3]) ;
}
elseif(isset($arguments[1]) && isset($arguments[2])) {
return $this->$service->$name($entity, $arguments[1], $arguments[2]) ;
}
elseif(isset($arguments[1])) {
return $this->$service->$name($entity, $arguments[1]) ;
}
else {
return $this->$service->$name($entity) ;
}
}

return false ;

Loading…
취소
저장