Our products have both size and color under the same SKU. Here is my example.
Example Product
Quantity |
Small |
Large |
TotalbyColors |
Blue |
2 |
5 |
7 |
Red |
3 |
6 |
9 |
TotalbySizes |
5 |
11 |
16 |
I would like to verify how the shopping cart handles the sale of 1 Large Blue Example Product.
Realize that the Product Variant QtyOnHand field is in four records to start: (Blue, 7), (Red, 9), (Small, 5) and (Large, 11)
After the sale, the table looks like this or not?
Example Product (after sale)
Quantity |
Small |
Large |
TotalbyColor |
Blue |
2 |
4 |
6 |
Red |
3 |
6 |
9 |
TotalbySize |
5 |
10 |
15 |
With a change to two of the variant records.... (Blue, 6) and (Large, 10)?
Is this how multiple variants on one product works?
Regards,
Guy