1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Weee\Block\Sales\Order;
- /**
- * @api
- * @since 100.0.2
- */
- class Totals extends \Magento\Framework\View\Element\Template
- {
- /**
- * @var \Magento\Weee\Helper\Data
- */
- protected $weeeData;
- /**
- * @param \Magento\Framework\View\Element\Template\Context $context
- * @param \Magento\Weee\Helper\Data $weeeData
- * @param array $data
- */
- public function __construct(
- \Magento\Framework\View\Element\Template\Context $context,
- \Magento\Weee\Helper\Data $weeeData,
- array $data = []
- ) {
- $this->weeeData = $weeeData;
- parent::__construct($context, $data);
- }
- /**
- * Get totals source object
- *
- * @return \Magento\Sales\Model\Order
- */
- public function getSource()
- {
- return $this->getParentBlock()->getSource();
- }
- /**
- * Create the weee ("FPT") totals summary
- *
- * @return $this
- */
- public function initTotals()
- {
- /** @var $items \Magento\Sales\Model\Order\Item[] */
- $items = $this->getSource()->getAllItems();
- $store = $this->getSource()->getStore();
- $weeeTotal = $this->weeeData->getTotalAmounts($items, $store);
- $weeeBaseTotal = $this->weeeData->getBaseTotalAmounts($items, $store);
- if ($weeeTotal) {
- // Add our total information to the set of other totals
- $total = new \Magento\Framework\DataObject(
- [
- 'code' => $this->getNameInLayout(),
- 'label' => __('FPT'),
- 'value' => $weeeTotal,
- 'base_value' => $weeeBaseTotal
- ]
- );
- if ($this->getBeforeCondition()) {
- $this->getParentBlock()->addTotalBefore($total, $this->getBeforeCondition());
- } else {
- $this->getParentBlock()->addTotal($total, $this->getAfterCondition());
- }
- }
- return $this;
- }
- }
|