You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gem is failing to create multiple inventory units when there are multiple in the order. This will throw off all inventory when there is a product in multiple bundles and a user checks out with those bundles.
For Example:
Bundle 1 => { Prod A x 1, Prod B x 1 }
Bundle 2 => { Prod A x 1, Prod B x 1, Prod C x 1}
If I checkout with both bundles, the system only creates InventoryUnits and StockMovements as follows:
Prod A -> qty 1
Prod B -> qty 1
Prod C -> qty 1
It should be
Prod A -> qty 2
Prod B -> qty 2
Prod C -> qty 1
I first noticed this in the Shipment manifest as it was only rendering "qty 1" for the three distinct products instead of the correct amounts.
The text was updated successfully, but these errors were encountered:
Gem is failing to create multiple inventory units when there are multiple in the order. This will throw off all inventory when there is a product in multiple bundles and a user checks out with those bundles.
For Example:
Bundle 1 => { Prod A x 1, Prod B x 1 }
Bundle 2 => { Prod A x 1, Prod B x 1, Prod C x 1}
If I checkout with both bundles, the system only creates InventoryUnits and StockMovements as follows:
Prod A -> qty 1
Prod B -> qty 1
Prod C -> qty 1
It should be
Prod A -> qty 2
Prod B -> qty 2
Prod C -> qty 1
I first noticed this in the Shipment manifest as it was only rendering "qty 1" for the three distinct products instead of the correct amounts.
The text was updated successfully, but these errors were encountered: