Webiant Logo Webiant Logo
  1. No results found.

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

OpcConfirmOrder.cshtml

@model CheckoutConfirmModel

@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutConfirmTop, additionalData = Model }) @if (!string.IsNullOrEmpty(Model.MinOrderTotalWarning) || Model.Warnings.Count > 0) {
@if (!string.IsNullOrEmpty(Model.MinOrderTotalWarning)) {
@Model.MinOrderTotalWarning
} @if (Model.Warnings.Count > 0) {
    @foreach (var warning in Model.Warnings) {
  • @warning
  • }
}
} @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.OpCheckoutConfirmBottom, additionalData = Model })
@await Component.InvokeAsync(typeof(OrderSummaryViewComponent), new { prepareAndDisplayOrderReviewData = true })
@if (string.IsNullOrEmpty(Model.MinOrderTotalWarning) && Model.TermsOfServiceOnOrderConfirmPage) {
@if (Model.TermsOfServicePopup) { @T("Checkout.TermsOfService.Read") } else { @T("Checkout.TermsOfService.Read") }
} @if (Model.DisplayCaptcha) { }