|
| 1 | +<?php |
| 2 | +/** |
| 3 | + * Copyright © Magento, Inc. All rights reserved. |
| 4 | + * See COPYING.txt for license details. |
| 5 | + */ |
| 6 | +namespace Magento\InventoryDataExporter\Plugin; |
| 7 | + |
| 8 | +use Magento\Inventory\Model\ResourceModel\SourceItem\DeleteMultiple; |
| 9 | +use Magento\InventoryApi\Api\Data\SourceItemInterface; |
| 10 | +use Magento\InventoryDataExporter\Model\Query\StockStatusDeleteQuery; |
| 11 | + |
| 12 | +/** |
| 13 | + * Plugin for setting stock item statuses as deleted |
| 14 | + */ |
| 15 | +class MarkItemsAsDeleted |
| 16 | +{ |
| 17 | + /** |
| 18 | + * @var StockStatusDeleteQuery |
| 19 | + */ |
| 20 | + private $stockStatusDeleteQuery; |
| 21 | + |
| 22 | + /** |
| 23 | + * @param StockStatusDeleteQuery $stockStatusDeleteQuery |
| 24 | + */ |
| 25 | + public function __construct( |
| 26 | + StockStatusDeleteQuery $stockStatusDeleteQuery |
| 27 | + ) { |
| 28 | + $this->stockStatusDeleteQuery = $stockStatusDeleteQuery; |
| 29 | + } |
| 30 | + |
| 31 | + /** |
| 32 | + * Set is_deleted value to 1 for deleted stock statuses |
| 33 | + * |
| 34 | + * @param DeleteMultiple $subject |
| 35 | + * @param SourceItemInterface[] $sourceItems |
| 36 | + * @return void |
| 37 | + * |
| 38 | + * @SuppressWarnings(PHPMD.UnusedFormalParameter) |
| 39 | + */ |
| 40 | + public function beforeExecute( |
| 41 | + DeleteMultiple $subject, |
| 42 | + array $sourceItems |
| 43 | + ): void { |
| 44 | + $deletedSourceItems = []; |
| 45 | + foreach ($sourceItems as $sourceItem) { |
| 46 | + $deletedSourceItems[$sourceItem->getSku()][] = $sourceItem->getSourceCode(); |
| 47 | + } |
| 48 | + |
| 49 | + $fetchedSourceItems = $this->stockStatusDeleteQuery->getStocksAssignedToSkus(array_keys($deletedSourceItems)); |
| 50 | + |
| 51 | + $stocksToDelete = $this->getStocksToDelete($deletedSourceItems, $fetchedSourceItems); |
| 52 | + if (!empty($stocksToDelete)) { |
| 53 | + $this->stockStatusDeleteQuery->markStockStatusesAsDeleted($stocksToDelete); |
| 54 | + } |
| 55 | + } |
| 56 | + |
| 57 | + /** |
| 58 | + * @param array $deletedSourceItems |
| 59 | + * @param $fetchedSourceItems |
| 60 | + * @return array |
| 61 | + */ |
| 62 | + private function getStocksToDelete(array $deletedSourceItems, $fetchedSourceItems): array |
| 63 | + { |
| 64 | + $stocksToDelete = []; |
| 65 | + foreach ($deletedSourceItems as $deletedItemSku => $deletedItemSources) { |
| 66 | + foreach ($fetchedSourceItems[$deletedItemSku] as $fetchedItemStockId => $fetchedItemSources) { |
| 67 | + if ($this->getContainsAllKeys($fetchedItemSources, $deletedItemSources)) { |
| 68 | + $stocksToDelete[(string)$fetchedItemStockId][] = $deletedItemSku; |
| 69 | + } |
| 70 | + } |
| 71 | + } |
| 72 | + |
| 73 | + return $stocksToDelete; |
| 74 | + } |
| 75 | + |
| 76 | + /** |
| 77 | + * @param array $fetchedSources |
| 78 | + * @param array $deletedSources |
| 79 | + * @return bool |
| 80 | + */ |
| 81 | + private function getContainsAllKeys(array $fetchedSources, array $deletedSources): bool |
| 82 | + { |
| 83 | + return empty(\array_diff($fetchedSources, $deletedSources)); |
| 84 | + } |
| 85 | +} |
0 commit comments