123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Tax\Block\Checkout;
- /**
- * Subtotal Total Row Renderer
- */
- class Grandtotal extends \Magento\Checkout\Block\Total\DefaultTotal
- {
- /**
- * Path to template file
- *
- * @var string
- */
- protected $_template = 'Magento_Tax::checkout/grandtotal.phtml';
- /**
- * @var \Magento\Tax\Model\Config
- */
- protected $_taxConfig;
- /**
- * @param \Magento\Framework\View\Element\Template\Context $context
- * @param \Magento\Customer\Model\Session $customerSession
- * @param \Magento\Checkout\Model\Session $checkoutSession
- * @param \Magento\Sales\Model\Config $salesConfig
- * @param \Magento\Tax\Model\Config $taxConfig
- * @param array $layoutProcessors
- * @param array $data
- */
- public function __construct(
- \Magento\Framework\View\Element\Template\Context $context,
- \Magento\Customer\Model\Session $customerSession,
- \Magento\Checkout\Model\Session $checkoutSession,
- \Magento\Sales\Model\Config $salesConfig,
- \Magento\Tax\Model\Config $taxConfig,
- array $layoutProcessors = [],
- array $data = []
- ) {
- $this->_taxConfig = $taxConfig;
- parent::__construct($context, $customerSession, $checkoutSession, $salesConfig, $layoutProcessors, $data);
- $this->_isScopePrivate = true;
- }
- /**
- * Check if we have include tax amount between grandtotal incl/excl tax
- *
- * @return bool
- */
- public function includeTax()
- {
- if ($this->getTotal()->getValue()) {
- return $this->_taxConfig->displayCartTaxWithGrandTotal($this->getStore());
- }
- return false;
- }
- /**
- * Get grandtotal exclude tax
- *
- * @return float
- */
- public function getTotalExclTax()
- {
- $excl = $this->getTotal()->getValue() - $this->_totals['tax']->getValue();
- $excl = max($excl, 0);
- return $excl;
- }
- }
|