| Current Path : /home/rtorresani/www/vendor/magento/module-sales/Block/Adminhtml/Order/Totals/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/Block/Adminhtml/Order/Totals/Item.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Block\Adminhtml\Order\Totals;
/**
* Totals item block
*
* @api
* @since 100.0.2
*/
class Item extends \Magento\Sales\Block\Adminhtml\Order\Totals
{
/**
* Determine display parameters before rendering HTML
*
* @return $this
*/
protected function _beforeToHtml()
{
parent::_beforeToHtml();
$this->setCanDisplayTotalPaid($this->getParentBlock()->getCanDisplayTotalPaid());
$this->setCanDisplayTotalRefunded($this->getParentBlock()->getCanDisplayTotalRefunded());
$this->setCanDisplayTotalDue($this->getParentBlock()->getCanDisplayTotalDue());
return $this;
}
/**
* Initialize totals object
*
* @return $this
*/
public function initTotals()
{
$total = new \Magento\Framework\DataObject(
[
'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->_adminHelper->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 = '<br/>')
{
return $this->_adminHelper->displayPriceAttribute($this->getSource(), $code, $strong, $separator);
}
/**
* Source order getter
*
* @return \Magento\Sales\Model\Order
*/
public function getSource()
{
return $this->getParentBlock()->getSource();
}
}