Exemplo n.º 1
0
 public function getTaxClassRates()
 {
     $taxRates = explode(',', $this->taxClassRates);
     $taxes = array();
     foreach ($taxRates as $tr) {
         if ($tr) {
             $taxrate = TaxRate::getByID($tr);
             if ($taxrate) {
                 $taxes[] = $taxrate;
             }
         }
     }
     return $taxes;
 }
Exemplo n.º 2
0
 public function delete($trID)
 {
     StoreTaxRate::getByID($trID)->delete();
     $this->redirect('/dashboard/store/settings/tax/removed');
 }