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"
Metadata
Metadata
Assignees
Labels
Issue recommended for the contribution dayGate 2 Passed. Manual verification of the issue description passedGate 3 Passed. Manual verification of the issue completed. Issue is confirmedGate 1 Passed. Automatic verification of issue format passedGate 4. Acknowledged. Issue is added to backlog and ready for developmentA defect with this priority could have functionality issues which are not to expectations.The issue has been reproduced on latest 2.3 releaseMajor restrictions or short-term circumventions are required until a fix is available.Issue related to Developer Experience and needs help with Triage to Confirm or Reject it