Exemplo n.º 1
0
 /**
  * get article user vat
  *
  * @param Article $oArticle article object
  *
  * @return double | false
  */
 public function getArticleUserVat(Article $oArticle)
 {
     if ($oUser = $oArticle->getArticleUser()) {
         return $this->getUserVat($oUser);
     }
     return false;
 }