Newer Version Available
OrderSummary Class
Namespace
OrderSummary Methods
adjustPreview(orderSummaryId, adjustInput)
API Version
49.0
Requires Chatter
No
Signature
public static ConnectApi.AdjustOrderSummaryOutputRepresentation adjustPreview(String orderSummaryId, ConnectApi.AdjustOrderItemSummaryInputRepresentation adjustInput)
Parameters
- orderSummaryId
- Type: String
- ID of the OrderSummary.
- adjustInput
- Type: ConnectApi.AdjustOrderItemSummaryInputRepresentation
- Price adjustments to OrderItemSummaries that together make up a price adjustment to an order, with options for adjusting items in the process of being fulfilled.
Return Value
Usage
When a price adjustment is applied to an OrderItemSummary, its quantities are considered in three groups:
- Pre-fulfillment
- QuantityAvailableToFulfill, which is equal to QuantityOrdered - QuantityCanceled - QuantityAllocated
- In-fulfillment
- QuantityAllocated - QuantityFulfilled
- Post-fulfillment
- QuantityAvailableToReturn, which is equal to QuantityFulfilled - QuantityReturnInitiated
You can apply adjustments to these groups in three different ways, controlled by the allocatedItemsChangeOrderType input property:
- Distribute the adjustment evenly between pre-fulfillment and post-fulfillment quantities. Ignore in-fulfillment quantities. Submitting the adjustment would create one change order for the adjustments to pre-fulfillment quantities and one change order for the adjustments to post-fulfillment quantities.
- Distribute the adjustment evenly between pre-fulfillment, in-fulfillment, and post-fulfillment quantities. Submitting the adjustment would create one change order for the adjustments to both pre-fulfillment and in-fulfillment quantities, and one change order for the adjustments to post-fulfillment quantities.
- Distribute the adjustment evenly between pre-fulfillment, in-fulfillment, and post-fulfillment quantities. Submitting the adjustment would create one change order for the adjustments to pre-fulfillment quantities, one change order for the adjustments to in-fulfillment quantities, and one change order for the adjustments to post-fulfillment quantities.
adjustSubmit(orderSummaryId, adjustInput)
API Version
49.0
Requires Chatter
No
Signature
public static ConnectApi.AdjustOrderSummaryOutputRepresentation adjustSubmit(String orderSummaryId, ConnectApi.AdjustOrderItemSummaryInputRepresentation adjustInput)
Parameters
- orderSummaryId
- Type: String
- ID of the OrderSummary.
- adjustInput
- Type: ConnectApi.AdjustOrderItemSummaryInputRepresentation
- Price adjustments to OrderItemSummaries that together make up a price adjustment to an order, with options for adjusting items in the process of being fulfilled.
Return Value
Usage
When a price adjustment is applied to an OrderItemSummary, its quantities are considered in three groups:
- Pre-fulfillment
- QuantityAvailableToFulfill, which is equal to QuantityOrdered - QuantityCanceled - QuantityAllocated
- In-fulfillment
- QuantityAllocated - QuantityFulfilled
- Post-fulfillment
- QuantityAvailableToReturn, which is equal to QuantityFulfilled - QuantityReturnInitiated
You can apply adjustments to these groups in three different ways, controlled by the allocatedItemsChangeOrderType input property:
- Distribute the adjustment evenly between pre-fulfillment and post-fulfillment quantities. Ignore in-fulfillment quantities. Create one change order for the adjustments to pre-fulfillment quantities and one change order for the adjustments to post-fulfillment quantities.
- Distribute the adjustment evenly between pre-fulfillment, in-fulfillment, and post-fulfillment quantities. Create one change order for the adjustments to both pre-fulfillment and in-fulfillment quantities, and one change order for the adjustments to post-fulfillment quantities.
- Distribute the adjustment evenly between pre-fulfillment, in-fulfillment, and post-fulfillment quantities. Create one change order for the adjustments to pre-fulfillment quantities, one change order for the adjustments to in-fulfillment quantities, and one change order for the adjustments to post-fulfillment quantities.
After submitting a price adjustment, process refunds as appropriate:
- If the discount only applied to OrderItemSummaries for which payment hasn’t been captured, it doesn’t require a refund. This situation normally applies to OrderItemSummaries in the US that haven’t been fulfilled.
- If the discount applied to OrderItemSummaries that haven’t been fulfilled and for which payment has been captured, process a refund. In this case, pass the totalExcessFundsAmount from the output representation to the ensureRefundsAsync() method.
- If the discount applied to OrderItemSummaries that have been fulfilled, process a refund. Pass the postFulfillmentChangeOrderId from the output representation to the createCreditMemo() method, then pass the CreditMemo to the ensureRefundsAsync() method.
- If the discount applied to both fulfilled and unfulfilled OrderItemSummaries for which payment has been captured, process both refunds. Pass the postFulfillmentChangeOrderId from the output representation to the createCreditMemo() method, then pass the credit memo and the totalExcessFundsAmount from the output representation to the ensureRefundsAsync() method.
createCreditMemo(orderSummaryId, creditMemoInput)
API Version
48.0
Requires Chatter
No
Signature
public static ConnectApi.CreateCreditMemoOutputRepresentation createCreditMemo(String orderSummaryId, ConnectApi.CreateCreditMemoInputRepresentation creditMemoInput)
Parameters
- orderSummaryId
- Type: String
- ID of the OrderSummary.
- creditMemoInput
- Type: ConnectApi.CreateCreditMemoInputRepresentation
- The list of change order IDs.
Return Value
ensureFundsAsync(orderSummaryId, ensureFundsInput)
API Version
48.0
Requires Chatter
No
Signature
public static ConnectApi.EnsureFundsAsyncOutputRepresentation ensureFundsAsync(String orderSummaryId, ConnectApi.EnsureFundsAsyncInputRepresentation ensureFundsInput)
Parameters
- orderSummaryId
- Type: String
- ID of the OrderSummary.
- ensureFundsInput
- Type: ConnectApi.EnsureFundsAsyncInputRepresentation
- The ID of the invoice.
Return Value
Usage
This method checks the OrderPaymentSummaries associated with the specified OrderSummary for funds to apply to the invoice balance following this logic:
- Verify that the invoice balance doesn’t exceed the total amount of all the OrderPaymentSummaries.
- Look for an OrderPaymentSummary with a captured amount equal to the invoice balance. If one exists, apply those funds.
- If no exact match was found, identify all OrderPaymentSummaries with captured amounts greater than the invoice balance. If any exist, select the smallest one and apply funds from it equal to the invoice balance.
- If no captured amounts greater than the invoice balance were found, traverse the OrderPaymentSummaries in order of captured amount, from largest to smallest. Apply each captured amount to the invoice until the invoice balance is zero or all captured funds are applied.
- If the invoice still has a balance, look for an OrderPaymentSummary with an authorized amount equal to the remaining invoice balance. If one exists, capture and apply those funds.
- If no exact match was found, identify all OrderPaymentSummaries with authorized amounts greater than the invoice balance. If any exist, select the smallest one and apply funds from it equal to the invoice balance.
- If no authorized amounts greater than the invoice balance were found, traverse the OrderPaymentSummaries in order of authorized amount, from largest to smallest. Capture and apply funds until the invoice balance is zero.
ensureRefundsAsync(orderSummaryId, ensureRefundsInput)
API Version
48.0
Requires Chatter
No
Signature
public static ConnectApi.EnsureRefundsAsyncOutputRepresentation ensureRefundsAsync(String orderSummaryId, ConnectApi.EnsureRefundsAsyncInputRepresentation ensureRefundsInput)
Parameters
- orderSummaryId
- Type: String
- ID of the OrderSummary.
- ensureRefundsInput
- Type: ConnectApi.EnsureRefundsAsyncInputRepresentation
- Object that wraps the ID of the credit memo and the excess funds amount.
Return Value
Usage
This method checks the OrderPaymentSummaries associated with the specified OrderSummary for amounts to refund following this logic:
- If a credit memo is specified, identify OrderPaymentSummaries with captured amounts that
were applied to the corresponding invoice.
- Examine those OrderPaymentSummaries. If one has a captured amount matching the credit memo amount, apply the refund to that payment.
- If no exact match was found, look for captured amounts greater than the credit memo amount. If any exist, apply the refund to the smallest one.
- If no greater amounts were found, traverse the OrderPaymentSummaries in order of captured amount, from largest to smallest. Apply the refund to them until it’s fully applied.
- If an excess funds amount is specified, identify OrderPaymentSummaries with captured
amounts that weren’t applied to any invoice.
- Examine those OrderPaymentSummaries. If one has a captured amount matching the excess funds amount, apply the refund to that payment.
- If no exact match was found, look for captured amounts greater than the excess funds amount. If any exist, apply the refund to the smallest one.
- If no greater amounts were found, traverse the OrderPaymentSummaries in order of captured amount, from largest to smallest. Apply the refund to them until it’s fully applied.
previewCancel(orderSummaryId, changeInput)
API Version
48.0
Requires Chatter
No
Signature
public static ConnectApi.PreviewCancelOutputRepresentation previewCancel(String orderSummaryId, ConnectApi.ChangeInputRepresentation changeInput)
Parameters
- orderSummaryId
- Type: String
- ID of the OrderSummary.
- changeInput
- Type: ConnectApi.ChangeInputRepresentation
- A list of changes to OrderItemSummaries that make up an order change, such as a cancel or return.
Return Value
previewReturn(orderSummaryId, changeInput)
API Version
48.0
Requires Chatter
No
Signature
public static ConnectApi.PreviewReturnOutputRepresentation previewReturn(String orderSummaryId, ConnectApi.ChangeInputRepresentation changeInput)
Parameters
- orderSummaryId
- Type: String
- ID of the OrderSummary.
- changeInput
- Type: ConnectApi.ChangeInputRepresentation
- A list of changes to OrderItemSummaries that make up an order change, such as a cancel or return.
Return Value
submitCancel(orderSummaryId, changeInput)
API Version
48.0
Requires Chatter
No
Signature
public static ConnectApi.SubmitCancelOutputRepresentation submitCancel(String orderSummaryId, ConnectApi.ChangeInputRepresentation changeInput)
Parameters
- orderSummaryId
- Type: String
- ID of the OrderSummary.
- changeInput
- Type: ConnectApi.ChangeInputRepresentation
- A list of changes to OrderItemSummaries that make up an order change, such as a cancel or return.
Return Value
submitReturn(orderSummaryId, changeInput)
API Version
48.0
Requires Chatter
No
Signature
public static ConnectApi.SubmitReturnOutputRepresentation submitReturn(String orderSummaryId, ConnectApi.ChangeInputRepresentation changeInput)
Parameters
- orderSummaryId
- Type: String
- ID of the OrderSummary.
- changeInput
- Type: ConnectApi.ChangeInputRepresentation
- A list of changes to OrderItemSummaries that make up an order change, such as a cancel or return.
Return Value
Usage
After submitting a return, process a refund. Pass the changeOrderId from the output representation to the createCreditMemo() method, then pass the credit memo to the ensureRefundsAsync() method.