Click or drag to resize
ItemDiscount Class
Class representing custom discount which should be applied to the specified shopping cart item. It implements IItemDiscount interface.
Inheritance Hierarchy
SystemObject
  CMS.EcommerceItemDiscount

Namespace: CMS.Ecommerce
Assembly: CMS.Ecommerce (in CMS.Ecommerce.dll) Version: 9.0.0
Syntax
C#
[SerializableAttribute]
public class ItemDiscount : IItemDiscount

The ItemDiscount type exposes the following members.

Constructors
  NameDescription
Public methodItemDiscount
Constructor - Creates an empty ItemDiscount object.
Public methodItemDiscount(SerializationInfo, StreamingContext)
Constructor - Creates a new ItemDiscount object from serialized data.
Top
Properties
  NameDescription
Public propertyItemDiscountCustomData
Discount custom data.
Public propertyItemDiscountDisplayName
Discount display name which is displayed to the customers in shopping cart item price detail dialog.
Public propertyItemDiscountedUnits
Number of units the discount should be applied to
Public propertyItemDiscountID
Discount unique identifier.
Public propertyItemDiscountIsFlat
True - discount value is flat, False (default) - discount value is relative.
Public propertyItemDiscountIsGlobal
True - discount value is set in global main currency, False (default) - discount value is set in site main currency. Takes effect only if discount value is flat.
Public propertyItemDiscountType
Type of the discount. 'Custom discount' type is set by default.
Public propertyItemDiscountValue
Discount value. It can be either relative or flat according to the ItemDiscountIsFlat property.
Top
Methods
  NameDescription
Public methodApplyTogetherWith
Returns false. Item discounts are applied on result of previous discounts application.
Public methodCalculateUnitDiscount
Calculates discount based on basePrice for given shoppingcart item.
Public methodGetObjectData
Gets object data.
Top
See Also