OrderHistoryService.GetOrderHistoryWithFinancials Method

Retrieve the order history of the specified Individual, including detailed financial data.

Definition

Namespace: Ignition.Commerce.Accounting.History
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
public IReadOnlyCollection<IHistoricalOrderWithFinancials> GetOrderHistoryWithFinancials(
	ICustomerWithFinancialData customer
)

Parameters

customer  ICustomerWithFinancialData
The Individual whose order history should be retrieved.

Return Value

IReadOnlyCollection<IHistoricalOrderWithFinancials>
A collection of historical orders, including detailed financial data, ordered by transaction date, with more recent orders appearing first. Voided and proforma records are not included, nor are any records related to non-fulfillment orders.

Remarks

Retrieval of detailed financial data can be prohibitively slow for individuals with a large number of orders. If the additional financial data included in the results of this method is not actually needed, then GetOrderHistory(ICustomerWithFinancialData) should be used instead.

See Also