Skip to content

Commit 86e6db8

Browse files
committed
Merge remote-tracking branch 'origin/develop' into NORD-EXT-PR-31
2 parents a30092f + 3f041dc commit 86e6db8

File tree

29 files changed

+188
-127
lines changed

29 files changed

+188
-127
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ atlassian*
3232

3333
/pub/media/*.*
3434
!/pub/media/.htaccess
35+
/pub/media/attribute/*
36+
!/pub/media/attribute/.htaccess
3537
/pub/media/analytics/*
3638
/pub/media/catalog/*
3739
!/pub/media/catalog/.htaccess

app/code/Magento/Braintree/Gateway/Response/CardDetailsHandler.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
*/
66
namespace Magento\Braintree\Gateway\Response;
77

8-
use \Braintree\Transaction;
98
use Magento\Braintree\Gateway\Config\Config;
109
use Magento\Payment\Gateway\Helper\ContextHelper;
1110
use Magento\Sales\Api\Data\OrderPaymentInterface;

app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use Magento\Bundle\Model\Product\Attribute\Source\Shipment\Type as ShipmentType;
1212
use Magento\Framework\Stdlib\ArrayManager;
1313
use Magento\Ui\Component\Container;
14-
use Magento\Ui\Component\DynamicRows;
1514
use Magento\Ui\Component\Form;
1615
use Magento\Ui\Component\Modal;
1716
use Magento\Catalog\Api\Data\ProductAttributeInterface;

app/code/Magento/Catalog/Model/Product.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
use Magento\Framework\Pricing\SaleableInterface;
1515
use Magento\Catalog\Api\Data\ProductAttributeMediaGalleryEntryInterface;
1616
use Magento\Catalog\Model\Product\Attribute\Backend\Media\EntryConverterPool;
17-
use Magento\Catalog\Api\Data\ProductAttributeMediaGalleryEntryExtensionFactory;
1817

1918
/**
2019
* Catalog product model

app/code/Magento/Catalog/Model/ResourceModel/Category.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ public function delete($object)
10221022
$this->getEntityManager()->delete($object);
10231023
$this->_eventManager->dispatch(
10241024
'catalog_category_delete_after_done',
1025-
['product' => $object]
1025+
['product' => $object, 'category' => $object]
10261026
);
10271027
return $this;
10281028
}

app/code/Magento/Catalog/view/base/web/js/price-box.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ define([
2121

2222
$.widget('mage.priceBox', {
2323
options: globalOptions,
24-
cache: {},
2524

2625
/**
2726
* Widget initialisation.
@@ -39,6 +38,7 @@ define([
3938
* Widget creating.
4039
*/
4140
_create: function createPriceBox() {
41+
this.cache = {};
4242
var box = this.element;
4343

4444
this._setDefaultsFromPriceConfig();

app/code/Magento/Checkout/Model/Type/Onepage.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
namespace Magento\Checkout\Model\Type;
77

88
use Magento\Customer\Api\AccountManagementInterface;
9-
use Magento\Customer\Api\AddressMetadataInterface as AddressMetadata;
109
use Magento\Customer\Api\AddressRepositoryInterface;
1110
use Magento\Customer\Api\CustomerRepositoryInterface;
1211
use Magento\Customer\Api\Data\CustomerInterfaceFactory as CustomerDataFactory;

app/code/Magento/Checkout/view/frontend/web/js/model/checkout-data-resolver.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,8 @@ define([
164164
if (!availableRate && window.checkoutConfig.selectedShippingMethod) {
165165
availableRate = window.checkoutConfig.selectedShippingMethod;
166166
selectShippingMethodAction(window.checkoutConfig.selectedShippingMethod);
167+
168+
return;
167169
}
168170

169171
//Unset selected shipping method if not available

app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/CreateOptions.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
namespace Magento\ConfigurableProduct\Controller\Adminhtml\Product\Attribute;
88

99
use Magento\Backend\App\Action;
10-
use Magento\Catalog\Controller\Adminhtml\Product;
1110
use Magento\Catalog\Model\ResourceModel\Eav\AttributeFactory;
1211

1312
class CreateOptions extends Action

app/code/Magento/ConfigurableProduct/Model/LinkManagement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public function getChildren($sku)
8282
foreach ($child->getAttributes() as $attribute) {
8383
$attrCode = $attribute->getAttributeCode();
8484
$value = $child->getDataUsingMethod($attrCode) ?: $child->getData($attrCode);
85-
if (null !== $value && $attrCode != 'entity_id') {
85+
if (null !== $value) {
8686
$attributes[$attrCode] = $value;
8787
}
8888
}

0 commit comments

Comments
 (0)