Table of Contents

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

bool

CurrentPage

Gets or sets the current page number.

public int CurrentPage { get; set; }

Property Value

int

FromCompletedDate

Filter to only show results where the order is completed after the given date.

public DateTime? FromCompletedDate { get; set; }

Property Value

DateTime?

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

int

ShowPricesWithVat

Gets or sets wether the display prices should be with or without vat.

public bool ShowPricesWithVat { get; set; }

Property Value

bool

ToCompletedDate

Filter to only show results where the order is completed before the given date.

public DateTime? ToCompletedDate { get; set; }

Property Value

DateTime?
To top