Computing Shipping for Cart Line Items
This API enables you to calculate the shipping amount for an entire order and does not display the breakup for each line item.
API |
Signature |
---|---|
computeShippingForCart |
webService static Apttus_CPQApi.CPQ.ComputeShippingResponseDO computeShippingForCart(Apttus_CPQApi.CPQ.ComputeShippingRequestDO request) |
Parameters |
||
---|---|---|
Name |
Type |
Description |
request | Apttus_CPQApi.CPQ.ComputeShippingRequestDO |
The compute shipping request. |
Request Data Object - Apttus_CPQApi.CPQ.ComputeShippingRequestDO |
||
---|---|---|
Field |
Type |
Description |
CartID | ID |
The id of the cart. |
Response Data Object - Apttus_CPQApi.CPQ.ComputeShippingResponseDO |
||
---|---|---|
Field |
Type |
Description |
ShippingResults | Map<ID,
Apttus_Config2.CustomClass.ShippingResult> |
The shipping result object populated by the line item id. This is only available when called from Apex. |
TotalShippingItem | Apttus_Config2__LineItem__c |
The line item with total taxes. |
Data Object - Apttus_Config2.CustomClass.ShippingResult |
||
---|---|---|
Field |
Type |
Description |
Handback | Object |
Any Apex Object passed by the calling class and passed back to the calling class in the result. Handback is used only in case when the shipping charge needs to be calculated for an object other than Cart line item e.g. Billing Schedule line items.
|
ShippingCharge | Decimal |
Shipping amount total of all the cart line items. This is the total shipping amount for the line item. Line item is identified by the sequence in which the shipping result is added. This needs to be calculated and populated by the implementation. |
Code Sample
The sample below enables you to compute shipping for a cart with a valid cartID. Using the sample below, you can compute shipping for the entire cart using the values fetched from the shipping callback class. If the shipping charge is location dependent, ensure that the account associated with the order or proposal has a valid shipping to and billing to address. For more information about Tax and Shipping scenarios refer, Updating Taxes and Shipping for an Order.