Try your search with a different keyword or use * as a wildcard.
@model TaxSettingsModel
@{
//page title
ViewBag.PageTitle = T("Admin.Configuration.Settings.Tax").Text;
//active menu item (system name)
NopHtml.SetActiveMenuItemSystemName("Tax settings");
}
@{
const string hideCommonBlockAttributeName = "TaxSettingsPage.HideCommonBlock";
var customer = await workContext.GetCurrentCustomerAsync();
var hideCommonBlock = await genericAttributeService.GetAttributeAsync(customer, hideCommonBlockAttributeName);
const string hideDefaultTaxAddressBlockAttributeName = "TaxSettingsPage.HideDefaultTaxAddressBlock";
var hideDefaultTaxAddressBlock = await genericAttributeService.GetAttributeAsync(customer, hideDefaultTaxAddressBlockAttributeName);
const string hideTaxDisplayingBlockAttributeName = "TaxSettingsPage.HideTaxDisplayingBlock";
var hideTaxDisplayingBlock = await genericAttributeService.GetAttributeAsync(customer, hideTaxDisplayingBlockAttributeName);
const string hideShippingBlockAttributeName = "TaxSettingsPage.HideShippingBlock";
var hideShippingBlock = await genericAttributeService.GetAttributeAsync(customer, hideShippingBlockAttributeName);
const string hidePaymentBlockAttributeName = "TaxSettingsPage.HidePaymentBlock";
var hidePaymentBlock = await genericAttributeService.GetAttributeAsync(customer, hidePaymentBlockAttributeName);
const string hideVATBlockAttributeName = "TaxSettingsPage.HideVATBlock";
var hideVATBlock = await genericAttributeService.GetAttributeAsync(customer, hideVATBlockAttributeName);
}