Feature Pack 8WebSphere Commerce Version 7.0.0.9

Enabling interim fix JR52515

Interim fix JR52515 supports disabling inventory status checks during order submission. For example, you might want to disable inventory status checks to test a check out flow.

Before you begin

Install the cumulative interim fix for Fix Pack 9, JR53438.fp.

Procedure

  1. Go to the following directory
    • Store_archivedir/storedir/javascript/CheckoutArea
    • WebSphere Commerce DeveloperStore_archivedir/WebContent/storedir/javascript/CheckoutArea
  2. Open the CheckoutHelper.js file.
  3. Find the checkoutOrder:function() function and add a new inventoryValidation parameter and set the value to false.
    For example:
    checkoutOrder:function(orderId,userType,addressListForMailNotification,isQuote){
    ...
    params = [];
    params["orderId"] = orderId;
    params["notifyMerchant"] = 1;
    params["inventoryValidation"] = "false";
    ..
    }