-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Open
Labels
Area: Cart & CheckoutComponent: CatalogIssue: ConfirmedGate 3 Passed. Manual verification of the issue completed. Issue is confirmedGate 3 Passed. Manual verification of the issue completed. Issue is confirmedPriority: P2A defect with this priority could have functionality issues which are not to expectations.A defect with this priority could have functionality issues which are not to expectations.Progress: PR in progressReported on 2.4.xIndicates original Magento version for the Issue report.Indicates original Magento version for the Issue report.Reproduced on 2.4.xThe issue has been reproduced on latest 2.4-develop branchThe issue has been reproduced on latest 2.4-develop branch
Milestone
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
Area: Cart & CheckoutComponent: CatalogIssue: ConfirmedGate 3 Passed. Manual verification of the issue completed. Issue is confirmedGate 3 Passed. Manual verification of the issue completed. Issue is confirmedPriority: P2A defect with this priority could have functionality issues which are not to expectations.A defect with this priority could have functionality issues which are not to expectations.Progress: PR in progressReported on 2.4.xIndicates original Magento version for the Issue report.Indicates original Magento version for the Issue report.Reproduced on 2.4.xThe issue has been reproduced on latest 2.4-develop branchThe issue has been reproduced on latest 2.4-develop branch