Esempio n. 1
0
 /**
  * Set global VAT.
  * @param type $v
  * @param bool $in
  * @param bool $out
  * @return self
  */
 public function setVat($v, $in, $out)
 {
     $this->tax = new Number\Tax($v);
     $this->tax->setVatIO($in, $this->request->loadParamVat($out));
     return $this;
 }