ÃÛ¶¹ÊÓƵ

ACSD-61805: Fixes stock issue on storefront after backorder status update via REST API

The ACSD-61805 patch fixes the issue where products remain out of stock on the storefront after updating the backorder status via REST API. This patch is available when the Quality Patches Tool (QPT) 1.1.56 is installed. The patch ID is ACSD-61805. Please note that the issue is scheduled to be fixed in ÃÛ¶¹ÊÓƵ Commerce 2.4.8.

Affected products and versions

The patch is created for ÃÛ¶¹ÊÓƵ Commerce version:

  • ÃÛ¶¹ÊÓƵ Commerce (all deployment methods) 2.4.4

Compatible with ÃÛ¶¹ÊÓƵ Commerce versions:

  • ÃÛ¶¹ÊÓƵ Commerce (all deployment methods) 2.4.4 - 2.4.7-p3
NOTE
The patch might become applicable to other versions with new Quality Patches Tool releases. To check if the patch is compatible with your ÃÛ¶¹ÊÓƵ Commerce version, update the 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

Products remain out of stock on the storefront after updating the backorder status via REST API.

Steps to reproduce:

  1. Install a clean instance with sample data.

  2. Create a new inventory source.

  3. Create a new inventory stock and assign the new source to it.

  4. Assign the new source to product 24-MB01.

  5. Set Source Item Status to In Stock for both product sources.

  6. Set the quantity (QTY) to 0 for both product quantities.

  7. Save the product.

  8. Fetch the admin token from this endpoint URL: /rest/default/V1/integration/admin/token

    code language-json
    {
      "username":"admin",
      "password":"password"
    }
    
  9. Update the product using the endpoint: /rest/default/V1/products

    code language-json
    {
      "product":{
        "sku": "24-MB01",
        "extension_attributes": {
            "stock_item": {
                "stock_id": "1",
                "is_in_stock": "0",
                "use_config_backorders": "false",
                "backorders": "0"
            }
        }
      }
    }
    
  10. Run the cron jobs twice (once to create schedules and once to run the schedule):

    code language-bash
    bin/magento cron:run
    
  11. Go to the frontend and check the product.

Expected results:

The product should be In Stock.

Actual results:

The product is Out of Stock.

Apply the patch

To apply individual patches, use the following links depending on your deployment method:

To learn more about Quality Patches Tool, refer to:

recommendation-more-help
c2d96e17-5179-455c-ad3a-e1697bb4e8c3