Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

_PickupPoints.cshtml

@model CheckoutPickupPointsModel

@using System.Text

@if (!Model.PickupInStoreOnly && Model.PickupPoints.Any())
{
    
@T("Checkout.PickupPoints.Description")
}
@if (Model.PickupPoints.Any()) { if (Model.PickupInStoreOnly) { }
@if (Model.PickupPoints.Count == 1) { var point = Model.PickupPoints.First();
  • @point.Name
  • @($"{point.AddressLine}")
  • @if (!string.IsNullOrEmpty(point.PickupFee)) {
  • @point.PickupFee
  • }
} else { }
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.CheckoutPickUpPointsAfter, additionalData = Model }) if (Model.DisplayPickupPointsOnMap) { var src = $"https://maps.googleapis.com/maps/api/js{(string.IsNullOrEmpty(Model.GoogleMapsApiKey) ? string.Empty : $"?key={Model.GoogleMapsApiKey}")}";
} }
    @foreach (var warning in Model.Warnings) {
  • @warning
  • }