Open
Description
Preconditions (*)
- Magento 2.3.2 or 2.3-develop
Steps to reproduce (*)
-
Create simple product with one custom option type drop-down with name "Color", and values "Red", "Green", also fill up SKU field for customizable options
-
Create Configurable product with one custom option type drop-down with name "Color", and values "Red", "Green", also fill up SKU field for customizable options
-
Go to Frontend, add to cart two these products
-
Get information about quote via REST API
-
Go to checkout, execute following JS in developer console, see result:
require(['mage/storage'], function(storage) {
storage.get('/rest/default/V1/guest-carts/' + window.checkoutConfig.quoteData.entity_id + '/')
.done(function(result) {
console.log(result.items);
});
});
Expected result (*)
- You should have an ability to get real product SKU, it's useful for different types of integrations
sku: "Simple-1"
sku: "Configurable 2-a"
Actual result (*)
- You're having not real product SKU, but added all custom options
sku: "Simple-1-Red"
sku: "Configurable 2-a-Red"