Gets the cumulative amount paid against this order's charges.

Namespace:  Asi.iBO.Commerce
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public decimal TotalPayments { get; }
Visual Basic (Declaration)
Public ReadOnly Property TotalPayments As Decimal
Visual C++
public:
property Decimal TotalPayments {
	Decimal get ();
}

Field Value

Automatically calculated. This is a sum of all payment amounts applied to this COrder.

Remarks

Prior to saving the COrder, the amount from the Payment property is not included. After the COrder is saved, Amount will be taken into account. For new orders, TotalPayments is 0.

See Also