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.ccLogicCartPlace.processInvoices

Calls the ccrz.cc_hk_Invoice.onOrder extension point method for creating invoice for the order.

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> processInvoices(Map<String, Object>)

Inputs (Required)

This method accepts the working Map<String, Object> after the ccrz.ccLogicCartPlace.changeOrderStatus method completes.

This method requires the following keys in the working map:

ccrz.ccLogicCartPlace.CART_HEADER
ccrz__E_Cart__c record that represents the source cart.
ccrz.ccLogicCartPlace.INVOICE_ENABLED
Boolean that must be false for this method to execute.
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.
ccrz.ccLogicCartPlace.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.ccLogicCartPlace.ORDER_HEADER
ccrz__E_Order__c record that represents the order to place.
ccrz.cc_hk_Invoice.PARAM_CART_ITEMS
List<ccrz__E_CartItem__c> of the original cart items included in the ccrz.ccLogicCartPlace.CART_ITEM_FETCH_RESPONSE input.
ccrz.cc_hk_Invoice.PARAM_ORDER_CHILD_ITEMS
List<ccrz__E_OrderItem__c> of the order's minor line items.
ccrz.cc_hk_Invoice.PARAM_ORDER_TERMS
List<ccrz__E_OrderTerm__c> of the inserted order terms.

Logic Performed

This method completes the following actions:

  1. Verifies that ccrz.ccLogicCartPlace.INVOICE_ENABLED is true. Otherwise, the method exits.
  2. Passes the other inputs to the ccrz.cc_hk_Invoice.onOrder extension point method for creating the ccrz__E_Invoice__c record for the order.

Outputs

This method returns the working Map<String, Object>, and doesn't add or remove any keys.