Skip to content

Commit d66eec2

Browse files
pradeep1819devarul
authored andcommitted
ACP2E-1418: [Cloud] REST Orders API returns different results when a simple configurable product is out of stock
1 parent 6b4d01a commit d66eec2

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/CatalogImportExport/Model/Export

1 file changed

+1
-1
lines changed

app/code/Magento/CatalogImportExport/Model/Export/Product.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@ protected function collectRawData()
11221122
$data[$itemId][$storeId][self::COL_STORE] = $storeCode;
11231123
$data[$itemId][$storeId][self::COL_ATTR_SET] = $this->_attrSetIdToName[$attrSetId];
11241124
$data[$itemId][$storeId][self::COL_TYPE] = $item->getTypeId();
1125-
$data[$itemId][$storeId][self::COL_SKU] = htmlspecialchars_decode($item->getSku());
1125+
$data[$itemId][$storeId][self::COL_SKU] = $item->getSku();
11261126
$data[$itemId][$storeId]['store_id'] = $storeId;
11271127
$data[$itemId][$storeId]['product_id'] = $itemId;
11281128
$data[$itemId][$storeId]['product_link_id'] = $productLinkId;

0 commit comments

Comments
 (0)