OrderHistoryService.GetOrderHistoryWithFinancials Method
Retrieve the order history of the specified Individual, including detailed financial data.
Namespace: Ignition.Commerce.Accounting.HistoryAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
public IReadOnlyCollection<IHistoricalOrderWithFinancials> GetOrderHistoryWithFinancials(
ICustomerWithFinancialData customer
)
Public Function GetOrderHistoryWithFinancials (
customer As ICustomerWithFinancialData
) As IReadOnlyCollection(Of IHistoricalOrderWithFinancials)
public:
virtual IReadOnlyCollection<IHistoricalOrderWithFinancials^>^ GetOrderHistoryWithFinancials(
ICustomerWithFinancialData^ customer
) sealed
abstract GetOrderHistoryWithFinancials :
customer : ICustomerWithFinancialData -> IReadOnlyCollection<IHistoricalOrderWithFinancials>
override GetOrderHistoryWithFinancials :
customer : ICustomerWithFinancialData -> IReadOnlyCollection<IHistoricalOrderWithFinancials>
- customer ICustomerWithFinancialData
- The Individual whose order history should be retrieved.
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.
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.