forked from magento/magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request magento#773 from magento-engcom/MSI-683
MSI-683: Bundled products work with Single Stock
- Loading branch information
Showing
4 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
...gin/InventoryConfiguration/IsSourceItemsAllowedForProductType/DisableBundleTypePlugin.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\InventoryBundle\Plugin\InventoryConfiguration\IsSourceItemsAllowedForProductType; | ||
|
||
use Magento\Bundle\Model\Product\Type as BundleType; | ||
use Magento\InventoryConfiguration\Model\IsSourceItemsAllowedForProductTypeInterface; | ||
|
||
/** | ||
* Disable Source items management for Bundle product type. | ||
*/ | ||
class DisableBundleTypePlugin | ||
{ | ||
/** | ||
* @param IsSourceItemsAllowedForProductType $subject | ||
* @param callable $proceed | ||
* @param string $productType | ||
* @return bool | ||
* @SuppressWarnings(PHPMD.UnusedFormalParameter) | ||
*/ | ||
public function aroundExecute( | ||
IsSourceItemsAllowedForProductTypeInterface $subject, | ||
callable $proceed, | ||
string $productType | ||
): bool { | ||
if ($productType === BundleType::TYPE_CODE) { | ||
return false; | ||
} | ||
|
||
return $proceed($productType); | ||
} | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> | ||
<type name="Magento\InventoryConfiguration\Model\IsSourceItemsAllowedForProductTypeInterface"> | ||
<plugin name="disable_bundle_type" | ||
type="Magento\InventoryBundle\Plugin\InventoryConfiguration\IsSourceItemsAllowedForProductType\DisableBundleTypePlugin"/> | ||
</type> | ||
</config> |
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