Try your search with a different keyword or use * as a wildcard.
@model CheckoutBillingAddressModel
@using Nop.Core;
@inject IWebHelper webHelper
@{
var storeLocation = webHelper.GetStoreLocation();
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutBillingAddressTop, additionalData = Model })
@if (Model.ShipToSameAddressAllowed)
{
}
@if (Model.ExistingAddresses.Count > 0)
{
@if (Model.InvalidExistingAddresses.Count > 0)
{
}
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutBillingAddressMiddle, additionalData = Model })
@if (Model.EuVatEnabled)
{
@if (Model.EuVatEnabledForGuests)
{
}
else
{
@T("Checkout.VatNumber.Disabled", Url.RouteUrl("CustomerInfo"))
}
}
@{
var dataDictAddress = new ViewDataDictionary(ViewData);
dataDictAddress.TemplateInfo.HtmlFieldPrefix = "BillingNewAddress";
@await Html.PartialAsync("_CreateOrUpdateAddress", Model.BillingNewAddress, dataDictAddress)
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutBillingAddressBottom, additionalData = Model })