123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Catalog Price rules observer model
- */
- namespace Magento\CatalogRule\Observer;
- use Magento\Framework\Event\ObserverInterface;
- use Magento\Catalog\Model\Product;
- use Magento\CatalogRule\Model\Rule;
- use Magento\Store\Model\StoreManagerInterface;
- use Magento\Framework\Stdlib\DateTime\TimezoneInterface;
- use Magento\Customer\Model\Session as CustomerModelSession;
- use Magento\Framework\Event\Observer as EventObserver;
- class ProcessFrontFinalPriceObserver implements ObserverInterface
- {
- /**
- * @var CustomerModelSession
- */
- protected $customerSession;
- /**
- * @var StoreManagerInterface
- */
- protected $storeManager;
- /**
- * @var \Magento\Framework\Stdlib\DateTime\TimezoneInterface
- */
- protected $localeDate;
- /**
- * @var \Magento\CatalogRule\Model\ResourceModel\RuleFactory
- */
- protected $resourceRuleFactory;
- /**
- * @var \Magento\CatalogRule\Observer\RulePricesStorage
- */
- protected $rulePricesStorage;
- /**
- * @param RulePricesStorage $rulePricesStorage
- * @param \Magento\CatalogRule\Model\ResourceModel\RuleFactory $resourceRuleFactory
- * @param StoreManagerInterface $storeManager
- * @param TimezoneInterface $localeDate
- * @param CustomerModelSession $customerSession
- */
- public function __construct(
- RulePricesStorage $rulePricesStorage,
- \Magento\CatalogRule\Model\ResourceModel\RuleFactory $resourceRuleFactory,
- StoreManagerInterface $storeManager,
- TimezoneInterface $localeDate,
- CustomerModelSession $customerSession
- ) {
- $this->rulePricesStorage = $rulePricesStorage;
- $this->resourceRuleFactory = $resourceRuleFactory;
- $this->storeManager = $storeManager;
- $this->localeDate = $localeDate;
- $this->customerSession = $customerSession;
- }
- /**
- * Apply catalog price rules to product on frontend
- *
- * @param \Magento\Framework\Event\Observer $observer
- * @return $this
- */
- public function execute(\Magento\Framework\Event\Observer $observer)
- {
- $product = $observer->getEvent()->getProduct();
- $pId = $product->getId();
- $storeId = $product->getStoreId();
- if ($observer->hasDate()) {
- $date = new \DateTime($observer->getEvent()->getDate());
- } else {
- $date = $this->localeDate->scopeDate($storeId);
- }
- if ($observer->hasWebsiteId()) {
- $wId = $observer->getEvent()->getWebsiteId();
- } else {
- $wId = $this->storeManager->getStore($storeId)->getWebsiteId();
- }
- if ($observer->hasCustomerGroupId()) {
- $gId = $observer->getEvent()->getCustomerGroupId();
- } elseif ($product->hasCustomerGroupId()) {
- $gId = $product->getCustomerGroupId();
- } else {
- $gId = $this->customerSession->getCustomerGroupId();
- }
- $key = "{$date->format('Y-m-d H:i:s')}|{$wId}|{$gId}|{$pId}";
- if (!$this->rulePricesStorage->hasRulePrice($key)) {
- $rulePrice = $this->resourceRuleFactory->create()->getRulePrice($date, $wId, $gId, $pId);
- $this->rulePricesStorage->setRulePrice($key, $rulePrice);
- }
- if ($this->rulePricesStorage->getRulePrice($key) !== false) {
- $finalPrice = min($product->getData('final_price'), $this->rulePricesStorage->getRulePrice($key));
- $product->setFinalPrice($finalPrice);
- }
- return $this;
- }
- }
|