'title', 'price', 'sku'); protected function _addDependenciesFromDb(array &$data) { $taxPercent = (float) App_Settings_Obj::get('orderPriceTax'); if ($data['applyTax'] == 'y' && $taxPercent > 0) { $data['tax'] = Zend_Locale_Math::Div( Zend_Locale_Math::Mul( $data['price'], $taxPercent, 4), 100, 4); } return $this; } }