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; } }