Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

ccrz.ccLogicCartPlaceAsync.insertMinorOrderItems

Sets the ccrz__Order__c, ccrz__RequestedDate__c, and ccrz__ParentOrderItem__c fields on each ccrz__E_OrderItem__c record that represents a minor line item in the order. Then, the method performs the DML insert operation on the ccrz__E_OrderItem__c records. This method executes only during the recursive, asynchronous ccrz.ccApiCart.placeAsync method calls.

Compatibility

This reference applies to:

Release Managed Package Version API Version
B2B Commerce for Visualforce Winter ’21 4.13 12

Signature

global virtual Map<String, Object> insertMinorOrderItems(Map<String, Object>)

Inputs (Required)

This method accepts the working Map<String, Object> from the ccrz.ccLogicCartPlace.performDMLOnOrderItems method.

This method requires the following keys in the working map:

ccrz.ccLogicCartPlaceAsync.MAJOR_ORDER_ITEMS
Map<String, ccrz__E_OrderItem__c>, where:
  • Each key is the Salesforce ID of a source ccrz__E_CartItem__c record that represents a major line item in the cart.
  • Each value is the ccrz__E_OrderItem__c to create for the corresponding major line item in the order.
ccrz.ccLogicCartPlaceAsync.MINOR_ORDER_ITEMS
Map<String, List<ccrz__E_OrderItem__c>>, where:
  • Each key is the Salesforce ID of a source ccrz__E_CartItem__c record that represents a major line item in the cart.
  • Each value is a List<ccrz__E_OrderItem__c> to create as minor line items for the ccrz__E_OrderItem__c that corresponds to the major line item from the cart.
ccrz.ccLogicCartPlaceAsync.ORDER_HEADER
ccrz__E_Order__c record that represents the order to create.

Inputs (Optional)

If the working map includes the following key, this method evaluates it:

ccrz.ccLogicCartPlaceAsync.INVOICE_ENABLED
Boolean
Value Usage
true The Invoice storefront configuration module's Enabled setting (inv.enabled) is true.
false The Invoice storefront configuration module's Enabled setting (inv.enabled) is false or null.

Outputs

This method returns the working Map<String, Object>, and sets the following keys:

ccrz.cc_hk_Invoice.PARAM_ORDER_CHILD_ITEMS
List<ccrz__E_OrderItem__c> of the inserted minor line items.

This output is returned only when the input data specifies ccrz.ccLogicCartPlaceAsync.INVOICE_ENABLED => true.

Note