Try your search with a different keyword or use * as a wildcard.
@model CustomerReturnRequestsModel
@using Nop.Core.Domain.Catalog
@inject Nop.Services.Html.IHtmlFormatter htmlFormatter
@{
Layout = "_ColumnsTwo";
//title
NopHtml.AddTitleParts(T("PageTitle.Account").Text);
//page class
NopHtml.AppendPageCssClassParts("html-account-page");
NopHtml.AppendPageCssClassParts("html-return-request-list-page");
}
@section left
{
@await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = CustomerNavigationEnum.ReturnRequests })
}
@T("Account.MyAccount") - @T("Account.CustomerReturnRequests")
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerReturnRequestsTop, additionalData = Model })
@foreach (var item in Model.Items)
{
@string.Format(T("Account.CustomerReturnRequests.Title").Text, item.CustomNumber, item.ReturnRequestStatus)
-
@item.ProductName
x @item.Quantity
-
@item.ReturnReason
-
@item.ReturnAction
-
@item.CreatedOn.ToString()
@if (item.UploadedFileGuid != Guid.Empty)
{
-
@T("Account.CustomerReturnRequests.UploadedFile.Download")
}
@if (!string.IsNullOrEmpty(item.Comments))
{
-
@Html.Raw(htmlFormatter.FormatText(item.Comments, false, true, false, false, false, false))
}
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CustomerReturnRequestsBottom, additionalData = Model })