*/ class Mage_Tax_Model_Calculation_Rate extends Mage_Core_Model_Abstract { protected $_titles = null; protected $_titleModel = null; /** * Varien model constructor */ protected function _construct() { $this->_init('tax/calculation_rate'); } /** * Prepare location settings and tax postcode before save rate * * @return Mage_Tax_Model_Calculation_Rate */ protected function _beforeSave() { if ($this->getZipIsRange()) { $zipFrom = substr($this->getZipFrom(), 0, 9); $zipTo = substr($this->getZipTo(), 0, 9); $this->setTaxPostcode($zipFrom . '-' . $zipTo); } else { $taxPostCode = $this->getTaxPostcode(); // postcode must be not longer than 10 symbols if (strlen($taxPostCode) > 10) { $taxPostCode = substr($taxPostCode, 0, 10); } $this->setTaxPostcode($taxPostCode) ->setZipIsRange(null) ->setZipFrom(null) ->setZipTo(null); } parent::_beforeSave(); $country = $this->getTaxCountryId(); $region = $this->getTaxRegionId(); $regionModel = Mage::getModel('directory/region'); $regionModel->load($region); if ($regionModel->getCountryId() != $country) { $this->setTaxRegionId('*'); } return $this; } /** * Save rate titles * * @return Mage_Tax_Model_Calculation_Rate */ protected function _afterSave() { $this->saveTitles(); Mage::dispatchEvent('tax_settings_change_after'); return parent::_afterSave(); } /** * Processing object before delete data * * @return Mage_Core_Model_Abstract * @throws Mage_Core_Exception */ protected function _beforeDelete() { if ($this->_isInRule()) { Mage::throwException(Mage::helper('tax')->__('Tax rate cannot be removed. It exists in tax rule')); } return parent::_beforeDelete(); } /** * After rate delete * redeclared for dispatch tax_settings_change_after event * * @return Mage_Tax_Model_Calculation_Rate */ protected function _afterDelete() { Mage::dispatchEvent('tax_settings_change_after'); return parent::_afterDelete(); } public function saveTitles($titles = null) { if (is_null($titles)) { $titles = $this->getTitle(); } $this->getTitleModel()->deleteByRateId($this->getId()); if (is_array($titles) && $titles) { foreach ($titles as $store=>$title) { if ($title !== '') { $this->getTitleModel() ->setId(null) ->setTaxCalculationRateId($this->getId()) ->setStoreId((int) $store) ->setValue($title) ->save(); } } } } public function getTitleModel() { if (is_null($this->_titleModel)) { $this->_titleModel = Mage::getModel('tax/calculation_rate_title'); } return $this->_titleModel; } public function getTitles() { if (is_null($this->_titles)) { $this->_titles = $this->getTitleModel()->getCollection()->loadByRateId($this->getId()); } return $this->_titles; } public function deleteAllRates() { $this->_getResource()->deleteAllRates(); Mage::dispatchEvent('tax_settings_change_after'); return $this; } /** * Load rate model by code * * @param string $code * @return Mage_Tax_Model_Calculation_Rate */ public function loadByCode($code) { $this->load($code, 'code'); return $this; } /** * Check if rate exists in tax rule * * @return array */ protected function _isInRule() { return $this->getResource()->isInRule($this->getId()); } }