Calculate cart details
Ecwid.Cart.calculateTotal()
Ecwid.Cart.calculateTotal()
This method calculates the current cart asynchronously and passes the result as an order
callback argument with a snapshot of the generated order with essential details.
order
argument fields
order
argument fieldscart
object cart
Contains full cart details after calculation matching the Ecwid.Cart.get()
result.
couponDiscount
number
Total discount from applied coupons.
customerGroupDiscount
number
Discount value from customer group discounts.
customerGroupVolumeDiscount
number
Absolute discount from customer group discounts.
discount
number
Total discount value from all sources.
handlingFee
number
Total fees applied to order.
handlingFeeWithoutTax
number
Total fees applied to order before taxes.
pricesIncludeTax
boolean
Specifies if product prices include taxes defining tax calculation formulae. If true
, the store works with "gross prices". If false
the store works with "net prices".
shipping
number
Total shipping cost.
shippingWithoutTax
number
Total shipping cost before taxes applied.
subtotal
number
Order subtotal. Includes the shopping cart total with discounts and taxes but without shipping costs or handling fees.
subtotalWithoutTax
number
Order subtotal before applied taxes.
tax
number
Total sum of taxes applied to order.
total
number
Order total that includes all costs, fees, taxes, and discounts.
totalWithoutTax
number
Order total before taxes applied.
volumeDiscount
number
Total discount for order subtotal.
Last updated
Was this helpful?