MDVA-35984: Wrong product Qty in concurrent shipments for same product
The MDVA-35984 patch fixes the issue when creating multiple concurrent shipments for the same product gives an incorrect product quantity (Qty). This patch is available when the Quality Patches Tool (QPT) 1.0.21 is installed. The patch ID is MDVA-35984. Please note that the issue was fixed in Adobe Commerce 2.4.3.
Affected products and versions
The patch is created for Adobe Commerce version:
Adobe Commerce on cloud infrastructure 2.4.2
Compatible with Adobe Commerce versions:
Adobe Commerce (all deployment methods) 2.4.0-2.4.2
magento/quality-patches
package to the latest version and check the compatibility on the Quality Patches Tool: Search for patches page. Use the patch ID as a search keyword to locate the patch.Issue
Steps to reproduce:
-
Create a simple product with Qty = 100.
-
Create two orders with this product.
-
Make concurrent API calls to create shipments for both orders, like this Example:
code language-php POST <host>/rest/<store_code>/V1/order/3/ship ``` where **order id** = *3* , with a payload like: ```php { "items": [ { "order_item_id": <order_item_id>, "qty": 1 } ], "tracks": [ { "track_number": "1Y-9876543210", "title": "United Parcel Service", "carrier_code": "ups" } ] }
-
Check the product Qty in the Admin grid.
Expected results:
The result is product Qty = 98 after both shipments.
Actual results:
The result is product Qty = 99 after both shipments.
Apply the patch
To apply individual patches, use the following links depending on your deployment method:
- Adobe Commerce or Magento Open Source on-premises: Software Update Guide > Apply Patches in our developer documentation.
- Adobe Commerce on cloud infrastructure: Upgrades and Patches > Apply Patches in our developer documentation.
Related reading
To learn more about Quality Patches Tool, refer to:
- Quality Patches Tool released: a new tool to self-serve quality patches in our support knowledge base.
- Check if patch is available for your Adobe Commerce issue using Quality Patches Tool in our support knowledge base.
For info about other patches available in QPT, refer to Patches available in QPT in our developer documentation.