// Normalize

This commit is contained in:
rMalie
2012-01-25 14:45:32 +00:00
parent f648b37b0c
commit 3f75029cc5
5 changed files with 9 additions and 10 deletions
+2 -2
View File
@@ -89,7 +89,7 @@ abstract class HTMLTemplateCore
{
$shop_address_obj = $this->shop->getAddress();
if (isset($shop_address_obj) && $shop_address_obj instanceof Address)
$shop_address = AddressFormat::generateAddress($shop_address_obj, array(), ' - ', ' ');return $shop_address;
$shop_address = AddressFormat::generateAddress($shop_address_obj, array(), ' - ', ' ');
return $shop_address;
}
@@ -163,7 +163,7 @@ abstract class HTMLTemplateCore
if (@!include(_PS_THEME_DIR_.'pdf/lang/'.$iso.'.php'))
die('Cannot include PDF translation language file : '._PS_THEME_DIR_.'pdf/lang/'.$iso.'.php');
if (!isset($_LANGPDF) OR !is_array($_LANGPDF))
if (!isset($_LANGPDF) || !is_array($_LANGPDF))
return str_replace('"', '"', $string);
$key = md5(str_replace('\'', '\\\'', $string));
$str = (key_exists('PDF'.$key, $_LANGPDF) ? $_LANGPDF['PDF'.$key] : $string);
+2 -2
View File
@@ -87,8 +87,8 @@ class HTMLTemplateInvoiceCore extends HTMLTemplate
{
$invoice_address = new Address((int)$this->order->id_address_invoice);
$tax_exempt = Configuration::get('VATNUMBER_MANAGEMENT')
AND !empty($invoiceAddress->vat_number)
AND $invoiceAddress->id_country != Configuration::get('VATNUMBER_COUNTRY');
&& !empty($invoiceAddress->vat_number)
&& $invoiceAddress->id_country != Configuration::get('VATNUMBER_COUNTRY');
$this->smarty->assign(array(
'tax_exempt' => $tax_exempt,
+1 -1
View File
@@ -41,7 +41,7 @@ class HTMLTemplateOrderReturnCore extends HTMLTemplate
// header informations
$this->date = Tools::displayDate($this->order->invoice_date, (int)$this->order->id_lang);
$this->title = HTMLTemplateOrderReturn::l('Order Return '.sprintf('%06d', $this->order_return->id); // TODO
$this->title = HTMLTemplateOrderReturn::l('Order Return '.sprintf('%06d', $this->order_return->id)); // TODO
// footer informations
$this->shop = new Shop((int)$this->order->id_shop);
+3 -3
View File
@@ -194,7 +194,7 @@ class TaxCore extends ObjectModel
* @param id_address
* @return float $tax_rate
*/
public static function getProductEcotaxRate($id_address = NULL)
public static function getProductEcotaxRate($id_address = null)
{
$address = Address::initialize($id_address);
@@ -210,7 +210,7 @@ class TaxCore extends ObjectModel
* @param id_address
* @return float $tax_rate
*/
public static function getCarrierTaxRate($id_carrier, $id_address = NULL)
public static function getCarrierTaxRate($id_carrier, $id_address = null)
{
$address = Address::initialize($id_address);
$id_tax_rules = (int)Carrier::getIdTaxRulesGroupByIdCarrier((int)$id_carrier);
@@ -250,7 +250,7 @@ class TaxCore extends ObjectModel
* @param integer $id_country
* @return Tax
*/
public static function getProductTaxRate($id_product, $id_address = NULL)
public static function getProductTaxRate($id_product, $id_address = null)
{
$address = Address::initialize($id_address);
$id_tax_rules = (int)Product::getIdTaxRulesGroupByIdProduct($id_product);
+1 -2
View File
@@ -36,8 +36,7 @@ abstract class TaxManagerModuleCore extends Module
public function hookTaxManager($args)
{
$class_file =_PS_MODULE_DIR_.'/'.$this->name.'/'.$this->tax_manager_class.'.php';
$class_file = _PS_MODULE_DIR_.'/'.$this->name.'/'.$this->tax_manager_class.'.php';
if (!isset($this->tax_manager_class) || !file_exists($class_file))
die(Tools::displayError('Incorrect Tax Manager class ['.$this->tax_manager_class.']'));