Closed
Description
Preconditions (*)
- Sample Data
Steps to reproduce (*)
- Add product to the cart
mutation addBundle(
$cart_id: String!
) {
addBundleProductsToCart(
input: {
cart_id: $cart_id
cart_items: {
data: {
quantity: 1
sku: "24-WG080"
}
bundle_options: [
{
id: 1
quantity: 1
value: [
"1"
"2"
"3"
]
}
{
id: 2
quantity: 1
value: [
"4"
]
}
{
id: 3
quantity: 1
value: [
"5"
]
}
{
id: 4
quantity: 1
value: [
"8"
]
}
]
}
}
) {
cart {
items {
id
quantity
product {
sku
}
... on BundleCartItem {
bundle_options {
id
label
type
values {
id
label
quantity
__typename
}
}
}
}
}
}
}
Expected result (*)
- Some message that complains about invalid input for BundleItem.type: radio/dropdown
Actual result (*)
- Successfully added to cart
Additional information
The issue was confirmed again on the lates 2.4-develop
code. May 28, 2020
In general it is possible to add to Shopping Cart and place order with option type radio and dropdown with multiple choices. This flow is not possible using UI on Storefront.
More details: #26110 (comment)
Metadata
Metadata
Assignees
Labels
Gate 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 releaseThe issue has been reproduced on latest 2.4-develop branchMajor restrictions or short-term circumventions are required until a fix is available.Has been reviewed and prioritized during Triage with Product Managers