Try your search with a different keyword or use * as a wildcard.
@model CustomerOrderListModel
@{
Layout = "_ColumnsTwo";
//title
NopHtml.AddTitleParts(T("PageTitle.Account").Text);
//page class
NopHtml.AppendPageCssClassParts("html-account-page");
NopHtml.AppendPageCssClassParts("html-order-list-page");
}
@section left
{
@await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.Orders })
}
@T("Account.MyAccount") - @T("Account.CustomerOrders")
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerOrdersTop, additionalData = Model })
@if (Model.RecurringOrders.Count > 0)
{
@T("Account.CustomerOrders.RecurringOrders")
if (Model.RecurringPaymentErrors.Any())
{
}
}
@if (Model.Orders.Count > 0)
{
@foreach (var order in Model.Orders)
{
@T("Account.CustomerOrders.OrderNumber"): @order.CustomOrderNumber
- @T("Account.CustomerOrders.OrderStatus"): @order.OrderStatus
- @T("Account.CustomerOrders.OrderDate"): @order.CreatedOn.ToString()
- @T("Account.CustomerOrders.OrderTotal"): @order.OrderTotal
}
}
else
{
@T("Account.CustomerOrders.NoOrders")
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerOrdersBottom, additionalData = Model })