Try your search with a different keyword or use * as a wildcard.
@model OrderModel
@{
//page title
ViewBag.PageTitle = T("Admin.Orders.EditOrderDetails").Text;
//active menu item (system name)
NopHtml.SetActiveMenuItemSystemName("Orders");
}
@{
const string hideInfoBlockAttributeName = "OrderPage.HideInfoBlock";
var customer = await workContext.GetCurrentCustomerAsync();
var hideInfoBlock = await genericAttributeService.GetAttributeAsync(customer, hideInfoBlockAttributeName);
const string hideBillingAndShippingBlockAttributeName = "OrderPage.HideBillingAndShippingBlock";
var hideBillingAndShippingBlock = await genericAttributeService.GetAttributeAsync(customer, hideBillingAndShippingBlockAttributeName);
const string hideProductsBlockAttributeName = "OrderPage.HideProductsBlock";
var hideProductsBlock = await genericAttributeService.GetAttributeAsync(customer, hideProductsBlockAttributeName);
const string hideNotesBlockAttributeName = "OrderPage.HideNotesBlock";
var hideNotesBlock = await genericAttributeService.GetAttributeAsync(customer, hideNotesBlockAttributeName);
}