![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/app/code/StripeIntegration/Payments/Observer/ |
<?php namespace StripeIntegration\Payments\Observer; use Magento\Payment\Observer\AbstractDataAssignObserver; use Magento\Framework\Event\Observer; // sales_quote_collect_totals_before class QuoteObserver extends AbstractDataAssignObserver { public $hasSubscriptions = null; private $config; private $taxCalculation; private $quoteHelper; public function __construct( \StripeIntegration\Payments\Helper\Quote $quoteHelper, \StripeIntegration\Payments\Model\Config $config, \StripeIntegration\Payments\Model\Tax\Calculation $taxCalculation ) { $this->quoteHelper = $quoteHelper; $this->config = $config; $this->taxCalculation = $taxCalculation; } /** * @return void */ public function execute(\Magento\Framework\Event\Observer $observer) { $this->setTaxCalculationMethod($observer); } public function setTaxCalculationMethod($observer) { $quote = $observer->getEvent()->getQuote(); if (empty($quote) || !$this->config->isSubscriptionsEnabled()) return; $this->taxCalculation->method = null; if ($this->hasSubscriptions === null) $this->hasSubscriptions = $this->quoteHelper->hasSubscriptionsIn($quote->getAllItems()); if ($this->hasSubscriptions) { $this->taxCalculation->method = \Magento\Tax\Model\Calculation::CALC_ROW_BASE; return; } if ($quote->getPayment() && $quote->getPayment()->getMethod() == "stripe_payments_invoice") { $this->taxCalculation->method = \Magento\Tax\Model\Calculation::CALC_ROW_BASE; return; } } }