ICartItem Interface

Note: This API is now obsolete.

Definition

Namespace: Ignition.Commerce.Shopping
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
[ObsoleteAttribute("Use IStandardCartItem instead (5.0)")]
public interface ICartItem : ICartItemIdentity
Implements
ICartItemIdentity

Properties

CanChangeQty Indicates if the quantity of a given line item may be changed. Items loaded from previous invoices can never have their quantities updated by Ignition, otherwise, baseline NetFORUM business rules are followed.
CartItemId Id of this item.
(Inherited from ICartItemIdentity)
Components 
DiscountAmountApplied Amount by which this cart item has been discounted. This amount will always be positive. This amount has already been subtracted from Total, and has not been subtracted from SubTotal.
HasDiscountProgramVoucherApplied Indicates if a discount program voucher has been applied to this cart item
InvoiceDetailType 
IsFromPreviousInvoice Indicates if this cart item came from a pre-existing invoice.
IsProductShippable Indicates if netFORUM considers the item is shippable. Not all items shipped require a corresponding shipping fee.
ItemName Name of the item being purchased. This maps to the name of this item's netFORUM Price rather than its Product.
PackageGroupingId 
PreviousInvoiceCode The Invoice Code of the previous invoice that this cart item came from. Will be null if IsFromPreviousInvoice is false.
PreviousInvoiceId The Id of the previous invoice that this cart item came from. Will be null if IsFromPreviousInvoice is false.
PreviousInvoiceTransactionDate The Transaction Date of the previous invoice that this cart item came from. Will be null if IsFromPreviousInvoice is false.
PriceId netFORUM Price being used for this particular purchase of this ProductId.
ProductCode netFORUM Product Code of the Product being purchased through this cart item.
ProductId netFORUM Product being purchased through this cart item.
ProductTypeId netFORUM Product Type of the Product being purchased through this cart item.
Qty The quantity of this cart item.
ShowOnInvoice 
SubTotal Sub-total for this cart item, excluding any taxes and discounts.
TaxApplied Amount of tax applied to this cart item. This amount has already been included in Total, and is excluded from SubTotal.
Total Total cost of this cart item, including any taxes and discounts.
UnitPrice The unit price of this cart item, excluding any taxes and discounts.

See Also