/**
  * @return float
  */
 public function getDefaultTaxRate()
 {
     return $this->taxFacade->getDefaultTaxRate();
 }
Пример #2
0
 /**
  * @return array
  */
 protected function createTaxRatesList()
 {
     $taxRateCollection = $this->taxFacade->getTaxRates();
     return new ObjectChoiceList($taxRateCollection->getTaxRates(), 'name', [], null, 'idTaxRate');
 }