 | OrderHistoryServiceGetOrderHistoryWithFinancials 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.28229
Syntaxpublic 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> Parameters
- customer ICustomerWithFinancialData
- The Individual whose order history should be retrieved.
Return Value
IReadOnlyCollectionIHistoricalOrderWithFinancialsA 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