setCanDisplayTotalPaid($this->getParentBlock()->getCanDisplayTotalPaid()); $this->setCanDisplayTotalRefunded($this->getParentBlock()->getCanDisplayTotalRefunded()); $this->setCanDisplayTotalDue($this->getParentBlock()->getCanDisplayTotalDue()); return $this; } /** * Initialize totals object * * @return Mage_Adminhtml_Block_Sales_Order_Totals_Item */ public function initTotals() { $total = new Varien_Object(array( 'code' => $this->getNameInLayout(), 'block_name'=> $this->getNameInLayout(), 'area' => $this->getDisplayArea(), 'strong' => $this->getStrong() )); if ($this->getBeforeCondition()) { $this->getParentBlock()->addTotalBefore($total, $this->getBeforeCondition()); } else { $this->getParentBlock()->addTotal($total, $this->getAfterCondition()); } return $this; } /** * Price HTML getter * * @param float $baseAmount * @param float $amount * @return string */ public function displayPrices($baseAmount, $amount) { return $this->helper('adminhtml/sales')->displayPrices($this->getOrder(), $baseAmount, $amount); } /** * Price attribute HTML getter * * @param string $code * @param bool $strong * @param string $separator * @return string */ public function displayPriceAttribute($code, $strong = false, $separator = '
') { return $this->helper('adminhtml/sales')->displayPriceAttribute($this->getSource(), $code, $strong, $separator); } /** * Source order getter * * @return Mage_Sales_Model_Order */ public function getSource() { return $this->getParentBlock()->getSource(); } }