We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60a4372 commit 54507a7Copy full SHA for 54507a7
app/code/Magento/CatalogImportExport/Model/Import/Product.php
@@ -2580,7 +2580,10 @@ private function _setStockUseConfigFieldsValues($rowData)
2580
{
2581
$useConfigFields = [];
2582
foreach ($rowData as $key => $value) {
2583
- $useConfigName = self::INVENTORY_USE_CONFIG_PREFIX . $key;
+ $useConfigName = $key === 'enable_qty_increments'
2584
+ ? 'use_config_enable_qty_inc'
2585
+ : self::INVENTORY_USE_CONFIG_PREFIX . $key;
2586
+
2587
if (isset($this->defaultStockData[$key])
2588
&& isset($this->defaultStockData[$useConfigName])
2589
&& !empty($value)
0 commit comments