9
9
10
10
use Magento \DataExporter \Model \Indexer \FeedIndexMetadata ;
11
11
use Magento \Framework \App \ResourceConnection ;
12
+ use Magento \Framework \Serialize \SerializerInterface ;
13
+ use Magento \Framework \Stdlib \DateTime ;
12
14
13
15
/**
14
16
* Stock Status mark as deleted query builder
@@ -25,16 +27,32 @@ class StockStatusDeleteQuery
25
27
*/
26
28
private $ metadata ;
27
29
30
+ /**
31
+ * @var SerializerInterface
32
+ */
33
+ private $ serializer ;
34
+
35
+ /**
36
+ * @var DateTime
37
+ */
38
+ private $ dateTime ;
39
+
28
40
/**
29
41
* @param ResourceConnection $resourceConnection
30
42
* @param FeedIndexMetadata $metadata
43
+ * @param SerializerInterface $serializer
44
+ * @param DateTime $dateTime
31
45
*/
32
46
public function __construct (
33
47
ResourceConnection $ resourceConnection ,
34
- FeedIndexMetadata $ metadata
48
+ FeedIndexMetadata $ metadata ,
49
+ SerializerInterface $ serializer ,
50
+ DateTime $ dateTime
35
51
) {
36
52
$ this ->resourceConnection = $ resourceConnection ;
37
53
$ this ->metadata = $ metadata ;
54
+ $ this ->serializer = $ serializer ;
55
+ $ this ->dateTime = $ dateTime ;
38
56
}
39
57
40
58
/**
@@ -49,10 +67,11 @@ public function getStocksAssignedToSkus(array $skus): array
49
67
$ select = $ connection ->select ()
50
68
->from (
51
69
['source_item ' => $ this ->resourceConnection ->getTableName ('inventory_source_item ' )],
52
- ['source_item.sku ' , 'source_stock_link.stock_id ' ]
70
+ ['source_item.sku ' , 'source_stock_link.stock_id ' , ' source_stock_link.source_code ' ]
53
71
)->joinLeft (
54
72
['source_stock_link ' => $ this ->resourceConnection ->getTableName ('inventory_source_stock_link ' )],
55
- 'source_item.source_code = source_stock_link.source_code '
73
+ 'source_item.source_code = source_stock_link.source_code ' ,
74
+ []
56
75
)->where ('source_item.sku IN (?) ' , $ skus );
57
76
58
77
$ fetchedSourceItems = [];
@@ -63,21 +82,92 @@ public function getStocksAssignedToSkus(array $skus): array
63
82
return $ fetchedSourceItems ;
64
83
}
65
84
85
+ /**
86
+ * Get stocks which are assigned to the list of provided SKUs
87
+ *
88
+ * @param array $sourceCodes
89
+ * @return array
90
+ */
91
+ public function getStocksWithSources (array $ sourceCodes ): array
92
+ {
93
+ $ connection = $ this ->resourceConnection ->getConnection ();
94
+ $ sourceLinkTableName = $ this ->resourceConnection ->getTableName ('inventory_source_stock_link ' );
95
+ $ select = $ connection ->select ()
96
+ ->from (
97
+ ['source_stock_link ' => $ sourceLinkTableName ],
98
+ ['source_stock_link.stock_id ' , 'source_stock_link_all_sources.source_code ' ]
99
+ )->joinInner (
100
+ ['source_stock_link_all_sources ' => $ sourceLinkTableName ],
101
+ 'source_stock_link_all_sources.stock_id = source_stock_link.stock_id ' ,
102
+ []
103
+ )->where (
104
+ 'source_stock_link.source_code IN (?) ' ,
105
+ $ sourceCodes
106
+ )->group (
107
+ ['source_stock_link.stock_id ' ,
108
+ 'source_stock_link_all_sources.source_code '
109
+ ]
110
+ );
111
+ $ stocks = [];
112
+ foreach ($ connection ->fetchAll ($ select ) as $ stockData ) {
113
+ $ stocks [$ stockData ['stock_id ' ]][] = $ stockData ['source_code ' ];
114
+ }
115
+ return $ stocks ;
116
+ }
117
+
66
118
/**
67
119
* Mark stock statuses as deleted
68
120
*
69
121
* @param array $idsToDelete
70
122
*/
71
123
public function markStockStatusesAsDeleted (array $ idsToDelete ): void
72
124
{
125
+ $ records = [];
126
+ foreach ($ idsToDelete as $ deletedItemId => $ stockStatusData ) {
127
+ $ records [] = $ this ->buildFeedData ($ deletedItemId , $ stockStatusData );
128
+ }
73
129
$ connection = $ this ->resourceConnection ->getConnection ();
74
130
$ feedTableName = $ this ->resourceConnection ->getTableName ($ this ->metadata ->getFeedTableName ());
75
- $ connection ->update (
131
+ $ connection ->insertOnDuplicate (
76
132
$ feedTableName ,
77
- ['is_deleted ' => new \Zend_Db_Expr ('1 ' )],
78
- [
79
- 'id IN (?) ' => $ idsToDelete
80
- ]
133
+ $ records
81
134
);
82
135
}
136
+
137
+ /**
138
+ * @param string $stockStatusId
139
+ * @param array $stockIdAndSku
140
+ * @return array
141
+ */
142
+ private function buildFeedData (string $ stockStatusId , array $ stockIdAndSku ): array
143
+ {
144
+ if (!isset ($ stockIdAndSku ['stock_id ' ], $ stockIdAndSku ['sku ' ])) {
145
+ throw new \RuntimeException (
146
+ sprintf (
147
+ "inventory_data_exporter_stock_status indexer error: cannot build unique id from %s " ,
148
+ \var_export ($ stockIdAndSku , true )
149
+ )
150
+ );
151
+ }
152
+ $ feedData = [
153
+ 'id ' => $ stockStatusId ,
154
+ 'stockId ' => $ stockIdAndSku ['stock_id ' ],
155
+ 'sku ' => $ stockIdAndSku ['sku ' ],
156
+ 'qty ' => 0 ,
157
+ 'qtyForSale ' => 0 ,
158
+ 'infiniteStock ' => false ,
159
+ 'isSalable ' => false ,
160
+ 'updatedAt ' => $ this ->dateTime ->formatDate (time ())
161
+
162
+ ];
163
+
164
+ return [
165
+ 'id ' => $ stockStatusId ,
166
+ 'stock_id ' => $ stockIdAndSku ['stock_id ' ],
167
+ 'sku ' => $ stockIdAndSku ['sku ' ],
168
+ 'feed_data ' => $ this ->serializer ->serialize ($ feedData ),
169
+ 'is_deleted ' => 1 ,
170
+ 'modified_at ' => $ this ->dateTime ->formatDate (time ())
171
+ ];
172
+ }
83
173
}
0 commit comments