IHistoricalOrderInvoices Property

A collection of all of the invoices generated as a part of this order. NetFORUM does not require all items in an order to be invoiced together, hence why this is a collection and not a single-valued property. NetFORUM also does not require all items to be invoiced at the time of order, so some items in the Items collection may not yet be represented by any invoice in this collection.

Definition

Namespace: Ignition.Commerce.Accounting.History
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
IReadOnlyCollection<IHistoricalInvoice> Invoices { get; }

Property Value

IReadOnlyCollectionIHistoricalInvoice

Remarks

All invoices in this collection are guaranteed to exist on the Invoices collection of the customer whose order history contains this object. This allows you to quickly look up a given Invoice by its Id via the customer entity, without having to re-pull the entire order history.

See Also