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.
Namespace: Ignition.Commerce.Accounting.HistoryAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
IReadOnlyCollection<IHistoricalInvoice> Invoices { get; }
ReadOnly Property Invoices As IReadOnlyCollection(Of IHistoricalInvoice)
Get
property IReadOnlyCollection<IHistoricalInvoice^>^ Invoices {
IReadOnlyCollection<IHistoricalInvoice^>^ get ();
}
abstract Invoices : IReadOnlyCollection<IHistoricalInvoice> with get
Property Value
IReadOnlyCollectionIHistoricalInvoice
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.