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 fe17868 commit 1268692Copy full SHA for 1268692
app/code/Magento/CatalogImportExport/Model/Import/Product.php
@@ -2636,7 +2636,10 @@ private function _setStockUseConfigFieldsValues($rowData)
2636
{
2637
$useConfigFields = [];
2638
foreach ($rowData as $key => $value) {
2639
- $useConfigName = self::INVENTORY_USE_CONFIG_PREFIX . $key;
+ $useConfigName = $key === 'enable_qty_increments'
2640
+ ? 'use_config_enable_qty_inc'
2641
+ : self::INVENTORY_USE_CONFIG_PREFIX . $key;
2642
+
2643
if (isset($this->defaultStockData[$key])
2644
&& isset($this->defaultStockData[$useConfigName])
2645
&& !empty($value)
0 commit comments