This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 7c19731c9548784f1287bacda56c9a1a30dc1004 Mon Sep 17 00:00:00 2001 | |
From: Jordan Schinella <[email protected]> | |
Date: Wed, 3 Aug 2022 21:04:26 -0400 | |
Subject: [PATCH] fix completed order state change in finalizeOrder method | |
--- | |
Helper/Order.php | 3 +++ | |
1 file changed, 3 insertions(+) | |
diff --git a/Helper/Order.php b/Helper/Order.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 942da86e86cbcb7503bfc78d5d0c32a76aff8423 Mon Sep 17 00:00:00 2001 | |
From: Jordan Schinella <[email protected]> | |
Date: Wed, 23 Mar 2022 18:18:54 -0400 | |
Subject: [PATCH] fix inventory search indexer | |
--- | |
.../Indexer/ConfigurableChildStockStatusModifier.php | 6 +++--- | |
1 file changed, 3 insertions(+), 3 deletions(-) | |
diff --git a/Model/CatalogSearch/Indexer/ConfigurableChildStockStatusModifier.php b/Model/CatalogSearch/Indexer/ConfigurableChildStockStatusModifier.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 36b6f90eca4b122f234e9a9982762acf28d18ca8 Mon Sep 17 00:00:00 2001 | |
From: Jordan Schinella <[email protected]> | |
Date: Wed, 23 Mar 2022 18:15:36 -0400 | |
Subject: [PATCH] fix inventory search indexer | |
--- | |
.../Indexer/BundleChildStockStatusModifier.php | 6 +++--- | |
1 file changed, 3 insertions(+), 3 deletions(-) | |
diff --git a/Model/CatalogSearch/Indexer/BundleChildStockStatusModifier.php b/Model/CatalogSearch/Indexer/BundleChildStockStatusModifier.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From b5109dc14098dfcddd69d5639b25960ff2165f97 Mon Sep 17 00:00:00 2001 | |
From: Jordan Schinella <[email protected]> | |
Date: Wed, 23 Mar 2022 18:10:48 -0400 | |
Subject: [PATCH] fix products missing from search | |
--- | |
Model/Indexer/FilterProductByStock.php | 65 ++++++------------- | |
...ildProductFilterByInventoryStockPlugin.php | 28 ++++---- | |
etc/di.xml | 2 +- | |
3 files changed, 38 insertions(+), 57 deletions(-) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'queue' => [ | |
'amqp' => [ | |
'host' => 'localhost', | |
'port' => '5672', | |
'user' => 'guest', | |
'password' => 'guest', | |
'virtualhost' => '/', | |
'ssl' => '' | |
], | |
'topics' => [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'queue' => [ | |
'amqp' => [ | |
'host' => 'localhost', | |
'port' => '5672', | |
'user' => 'guest', | |
'password' => 'guest', | |
'virtualhost' => '/', | |
'ssl' => '' | |
], | |
'topics' => [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/vendor/magento/module-sales/Block/Order/Email/Creditmemo/Items.php b/vendor/magento/module-sales/Block/Order/Email/Creditmemo/Items.php | |
index 0b691eff5757..0a1e87e5e0a2 100644 | |
--- a/vendor/magento/module-sales/Block/Order/Email/Creditmemo/Items.php | |
+++ b/vendor/magento/module-sales/Block/Order/Email/Creditmemo/Items.php | |
@@ -5,6 +5,13 @@ | |
*/ | |
namespace Magento\Sales\Block\Order\Email\Creditmemo; | |
+use Magento\Framework\App\ObjectManager; | |
+use Magento\Framework\View\Element\Template\Context; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/vendor/magento/module-quote/Model/ResourceModel/Quote.php b/vendor/magento/module-quote/Model/ResourceModel/Quote.php | |
index 71026ba3bc0..7f9e9733553 100644 | |
--- a/vendor/magento/module-quote/Model/ResourceModel/Quote.php | |
+++ b/vendor/magento/module-quote/Model/ResourceModel/Quote.php | |
@@ -62,6 +62,10 @@ class Quote extends AbstractDb | |
protected function _getLoadSelect($field, $value, $object) | |
{ | |
$select = parent::_getLoadSelect($field, $value, $object); | |
+ if ($this->getIdFieldName() === $field) { | |
+ return $select; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* Copyright (c) 2013 Studio Boz | |
* | |
* @project_name Studio Boz | |
* @copyright Copyright (c) 2013 Studio Boz (http://studioboz.com.br) | |
* @author Rick Benetti <[email protected]> | |
* | |
**/ |
NewerOlder