Class OrderListViewModelSettings
- Namespace
- Dynamicweb.Ecommerce.Frontend
- Assembly
- Dynamicweb.Ecommerce.dll
public class OrderListViewModelSettings : ViewSettingsBase<OrderListViewModel>
- Inheritance
-
OrderListViewModelSettings
- Inherited Members
Properties
ByCustomerNumber
If set to true, orders are fetched for all users sharing the current users customer number. Default is false
public bool ByCustomerNumber { get; set; }
Property Value
CurrentPage
Gets or sets the current page number.
public int CurrentPage { get; set; }
Property Value
FromCompletedDate
Filter to only show results where the order is completed after the given date.
public DateTime? FromCompletedDate { get; set; }
Property Value
PageSize
Gets or sets the product count per page. If this value is greater than 0, the view model result will be paginated, otherwise, plain list.
public int PageSize { get; set; }
Property Value
ShowPricesWithVat
Gets or sets wether the display prices should be with or without vat.
public bool ShowPricesWithVat { get; set; }
Property Value
ToCompletedDate
Filter to only show results where the order is completed before the given date.
public DateTime? ToCompletedDate { get; set; }