We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08648cb commit ead41d9Copy full SHA for ead41d9
app/code/Magento/CatalogImportExport/Model/Import/Product.php
@@ -2549,7 +2549,10 @@ private function _setStockUseConfigFieldsValues($rowData)
2549
{
2550
$useConfigFields = array();
2551
foreach ($rowData as $key => $value) {
2552
- $useConfigName = self::INVENTORY_USE_CONFIG_PREFIX . $key;
+ $useConfigName = $key === 'enable_qty_increments'
2553
+ ? 'use_config_enable_qty_inc'
2554
+ : self::INVENTORY_USE_CONFIG_PREFIX . $key;
2555
+
2556
if (isset($this->defaultStockData[$key])
2557
&& isset($this->defaultStockData[$useConfigName])
2558
&& !empty($value)
0 commit comments