示例#1
0
 /**
  * Check if we have display grand total in base currency
  *
  * @return bool
  */
 public function needDisplayBaseGrandtotal()
 {
     // If we have a mapped currency code never display base grand total
     if (Mage::getSingleton('gene_braintree/wrapper_braintree')->hasMappedCurrencyCode()) {
         return false;
     }
     return parent::needDisplayBaseGrandtotal();
 }