-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PLUGIN1CC-4024] Magic buy now logic update based on config #514
base: magic_integration_latest
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,7 +181,12 @@ public function execute() | |
} else { | ||
/** @var QuoteBuilder $quoteBuilder */ | ||
$quoteBuilder = $this->quoteBuilderFactory->create(); | ||
$quote = $quoteBuilder->createQuote(); | ||
$buyNowCartPushAction = $this->config->getBuyNowAction(); | ||
if ($buyNowCartPushAction === '1') { | ||
$quote = $quoteBuilder->createOrUpdateQuote(); | ||
} else { | ||
$quote = $quoteBuilder->createQuote(); | ||
} | ||
$quoteId = $quote->getId(); | ||
$quote = $this->quoteFactory->create()->load($quoteId); | ||
$totals = $quote->getTotals(); | ||
|
@@ -231,10 +236,10 @@ public function execute() | |
$productImageUrl = $store->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA) . 'catalog/product' . $product->getImage(); | ||
} | ||
|
||
$imagewidth=200; | ||
$imageheight=200; | ||
$imagewidth = 200; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's not a part of your change, but long-term if we really need to use |
||
$imageheight = 200; | ||
$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); | ||
$imageHelper = $objectManager->get('\Magento\Catalog\Helper\Image'); | ||
$imageHelper = $objectManager->get('\Magento\Catalog\Helper\Image'); | ||
$productImageUrl = $imageHelper->init($product, 'product_page_image_small')->setImageFile($product->getFile())->resize($imagewidth, $imageheight)->getUrl(); | ||
|
||
$productUrl = $product->getProductUrl(); | ||
|
@@ -249,7 +254,7 @@ public function execute() | |
} | ||
|
||
$categoriesIds = $product->getCategoryIds(); /*will return category ids array*/ | ||
foreach($categoriesIds as $categoryId){ | ||
foreach ($categoriesIds as $categoryId) { | ||
|
||
$cat = $objectManager->create('Magento\Catalog\Model\Category')->load($categoryId); | ||
$catName = $cat->getName(); | ||
|
@@ -316,8 +321,7 @@ public function execute() | |
]; | ||
$customerEmail = $this->getCustomerEmailFromQuote(); | ||
|
||
if($customerEmail !== false) | ||
{ | ||
if ($customerEmail !== false) { | ||
$customerEmailNotes = [ | ||
'website_logged_in_email' => $customerEmail | ||
]; | ||
|
@@ -337,7 +341,7 @@ public function execute() | |
|
||
if (null !== $razorpay_order && !empty($razorpay_order->id)) { | ||
$this->logger->info('graphQL: Razorpay Order ID: ' . $razorpay_order->id); | ||
$catalogRzpKey = static::QUOTE_LINKED_RAZORPAY_ORDER_ID.'_'.$maskedId; | ||
$catalogRzpKey = static::QUOTE_LINKED_RAZORPAY_ORDER_ID . '_' . $maskedId; | ||
$this->logger->info('graphQL: Razorpay Order ID stored catalogKey: ' . $catalogRzpKey); | ||
|
||
$this->checkoutSession->setData($catalogRzpKey, $razorpay_order->id); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
use Magento\Customer\Model\Session; | ||
use Razorpay\Magento\Model\QuoteBuilder\ItemBuilderFactory; | ||
use Razorpay\Magento\Model\QuoteBuilder\ItemBuilder; | ||
use Magento\Checkout\Model\Session as CheckoutSession; | ||
|
||
class QuoteBuilder | ||
{ | ||
|
@@ -29,6 +30,7 @@ class QuoteBuilder | |
* @var ItemBuilderFactory | ||
*/ | ||
protected $itemBuilderFactory; | ||
protected $checkoutSession; | ||
|
||
/** | ||
* QuoteBuilder constructor. | ||
|
@@ -38,15 +40,18 @@ class QuoteBuilder | |
* @param ItemBuilderFactory $itemBuilderFactory | ||
*/ | ||
public function __construct( | ||
QuoteFactory $quoteFactory, | ||
QuoteFactory $quoteFactory, | ||
StoreManagerInterface $storeManager, | ||
Session $session, | ||
ItemBuilderFactory $itemBuilderFactory | ||
) { | ||
Session $session, | ||
CheckoutSession $checkoutSession, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Every single time you introduce In order to address this requirement, open <type name="Razorpay\Magento\Model\QuoteBuilder">
<arguments>
<argument name="session" xsi:type="object">Magento\Customer\Model\Session\Proxy</argument>
<argument name="checkoutSession" xsi:type="object">Magento\Checkout\Model\Session\Proxy</argument>
</arguments>
</type> https://developer.adobe.com/commerce/php/development/components/proxies/ |
||
ItemBuilderFactory $itemBuilderFactory | ||
) | ||
{ | ||
$this->quoteFactory = $quoteFactory; | ||
$this->storeManager = $storeManager; | ||
$this->session = $session; | ||
$this->itemBuilderFactory = $itemBuilderFactory; | ||
$this->checkoutSession = $checkoutSession; | ||
} | ||
|
||
/** | ||
|
@@ -74,4 +79,39 @@ public function createQuote() | |
|
||
return $quote; | ||
} | ||
|
||
public function createOrUpdateQuote() | ||
{ | ||
/** @var \Magento\Quote\Model\Quote $quote */ | ||
$storeId = $this->storeManager->getStore()->getId(); | ||
|
||
$quote = $this->checkoutSession->getQuote(); | ||
|
||
// Check if a cart already exists for the customer | ||
if ($quote->getId()) { | ||
|
||
// Existing quote found, load it | ||
$quote->load($quote->getId()); | ||
|
||
} else { | ||
$quote = $this->quoteFactory->create(); | ||
|
||
// Guest user flow | ||
$quote->setStoreId($storeId); | ||
$quote->setCustomerIsGuest(1); | ||
} | ||
|
||
/** @var ItemBuilder $itemBuilder */ | ||
$itemBuilder = $this->itemBuilderFactory->create(['quote' => $quote]); | ||
$itemBuilder->addItems(); | ||
|
||
$quote->setIsActive(1); | ||
$quote->setTotalsCollectedFlag(false)->collectTotals()->save(); | ||
|
||
$this->session->setQuoteId($quote->getId()); | ||
$this->checkoutSession->setQuoteId($quote->getId()); | ||
|
||
return $quote; | ||
} | ||
|
||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We work in *nix context, make sure to keep empty line at the end of file. |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -124,7 +124,19 @@ | |||||
</depends> | ||||||
</field> | ||||||
|
||||||
<field id="activate_magic_mini_cart" translate="label" type="select" sortOrder="27" showInDefault="0" showInWebsite="0" showInStore="0"> | ||||||
<field id="magic_buy_now_cart_push" translate="label" type="select" sortOrder="27" showInDefault="1" showInWebsite="1" showInStore="1"> | ||||||
<label>Update Product to Existing Cart on Buy Now </label> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
<comment>If you enable this configuration then on click of buy now button on PDP, magic will push the item to existing cart</comment> | ||||||
<source_model>Magento\Config\Model\Config\Source\Yesno</source_model> | ||||||
<config_path>payment/razorpay/magic_buy_now_cart_push</config_path> | ||||||
<depends> | ||||||
<field id="activate_magic">1</field> | ||||||
<field id="activate_magic_buy_now">1</field> | ||||||
</depends> | ||||||
</field> | ||||||
|
||||||
|
||||||
<field id="activate_magic_mini_cart" translate="label" type="select" sortOrder="28" showInDefault="0" showInWebsite="0" showInStore="0"> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When one of these values is
Suggested change
|
||||||
<label>Magic Mini Cart Enabled</label> | ||||||
<source_model>Magento\Config\Model\Config\Source\Yesno</source_model> | ||||||
<config_path>payment/razorpay/activate_magic_mini_cart</config_path> | ||||||
|
@@ -133,7 +145,7 @@ | |||||
</depends> | ||||||
</field> | ||||||
|
||||||
<field id="allow_coupon_apply_magic" translate="label" type="select" sortOrder="28" showInDefault="1" showInWebsite="1" showInStore="1"> | ||||||
<field id="allow_coupon_apply_magic" translate="label" type="select" sortOrder="29" showInDefault="1" showInWebsite="1" showInStore="1"> | ||||||
<label>Allow Coupon Apply on Magic </label> | ||||||
<comment>Setup coupon widget on Magic Checkout modal</comment> | ||||||
<source_model>Magento\Config\Model\Config\Source\Yesno</source_model> | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be simplified to: