1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?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();
- }
- }
|