Component builder for: 02 Mobile Granzow – Product list view

Vejl. pris:

Din pris:

Error executing template "Designs/Swift/Paragraph/Swift_ProductPrice.cshtml"
System.NullReferenceException: Object reference not set to an instance of an object.
   at CompiledRazorTemplates.Dynamic.RazorEngine_b6db2496204747448307aebe7be7811f.ExecuteAsync()
   at RazorEngine.Templating.TemplateBase.Run(ExecuteContext context, TextWriter reader)
   at RazorEngine.Templating.RazorEngineCore.RunTemplate(ICompiledTemplate template, TextWriter writer, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineService.Run(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.DynamicWrapperService.Run(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineServiceExtensions.Run(IRazorEngineService service, String name, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineServiceExtensions.<>c__DisplayClass23_0.<Run>b__0(TextWriter writer)
   at RazorEngine.Templating.RazorEngineServiceExtensions.WithWriter(Action`1 withWriter)
   at RazorEngine.Templating.RazorEngineServiceExtensions.Run(IRazorEngineService service, String name, Type modelType, Object model, DynamicViewBag viewBag)
   at Dynamicweb.Rendering.RazorTemplateRenderingProvider.Render(Template template)
   at Dynamicweb.Rendering.TemplateRenderingService.Render(Template template)
   at Dynamicweb.Rendering.Template.RenderRazorTemplate()

1 @inherits Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 2 @using Dynamicweb.Ecommerce.ProductCatalog 3 4 @{ 5 ProductViewModel product = null; 6 if (Dynamicweb.Context.Current.Items.Contains("ProductDetails")) 7 { 8 product = (ProductViewModel)Dynamicweb.Context.Current.Items["ProductDetails"]; 9 } 10 else if (Pageview.Page.Item["DummyProduct"] != null && Pageview.IsVisualEditorMode) 11 { 12 var pageViewModel = Dynamicweb.Frontend.ContentViewModelFactory.CreatePageInfoViewModel(Pageview.Page); 13 ProductListViewModel productList = pageViewModel.Item.GetValue("DummyProduct") != null ? pageViewModel.Item.GetValue("DummyProduct") as ProductListViewModel : new ProductListViewModel(); 14 15 if (productList?.Products is object) 16 { 17 product = productList.Products[0]; 18 } 19 } 20 21 string anonymousUsersLimitations = Pageview.AreaSettings.GetRawValueString("AnonymousUsers", ""); 22 bool anonymousUser = Pageview.User == null; 23 bool isErpConnectionDown = !Dynamicweb.Core.Converter.ToBoolean(Dynamicweb.Context.Current.Items["IsWebServiceConnectionAvailable"]); 24 bool hidePrice = anonymousUsersLimitations.Contains("price") && anonymousUser || Pageview.AreaSettings.GetBoolean("ErpDownHidePrices") && isErpConnectionDown; 25 hidePrice = !hidePrice && product.Id != null && !Convert.ToBoolean(product.ProductFields["Custom_EnableAnonymousPurchase"]?.Value) && anonymousUser ? true : hidePrice; // #22458 26 hidePrice = Pageview.IsVisualEditorMode ? false : hidePrice; // #22458 27 28 bool productIsDiscontinued = product is object && product.Discontinued; 29 bool doNotShowPriceIfProductIsDiscontinued = Model.Item.GetBoolean("DoNotShowPriceIfProductIsDiscontinued"); 30 var isDiscontinued = productIsDiscontinued && doNotShowPriceIfProductIsDiscontinued; 31 } 32 33 @if (product is object && !hidePrice && !isDiscontinued) { 34 bool showInformativePrice = Model.Item.GetBoolean("ShowInformativePrice"); 35 string unitId = !string.IsNullOrEmpty(Dynamicweb.Context.Current.Request.Form.Get("UnitId")) ? Dynamicweb.Context.Current.Request.Form.Get("UnitId") : string.Empty; 36 37 string priceFontSize = Model.Item.GetRawValueString("PriceSize", "fs-2"); 38 string horizontalAlign = Model.Item.GetRawValueString("HorizontalAlignment", ""); 39 string layout = Model.Item.GetRawValueString("Layout", "horizontal"); 40 string textAlign = horizontalAlign == "center" ? "text-center" : string.Empty; 41 textAlign = horizontalAlign == "end" ? "text-end" : textAlign; 42 43 horizontalAlign = horizontalAlign == "center" && layout == "horizontal" ? "justify-content-center" : horizontalAlign; 44 horizontalAlign = horizontalAlign == "end" && layout == "horizontal" ? "justify-content-end" : horizontalAlign; 45 horizontalAlign = horizontalAlign == "center" && layout == "vertical" ? "align-items-center" : horizontalAlign; 46 horizontalAlign = horizontalAlign == "end" && layout == "vertical" ? "align-items-end" : horizontalAlign; 47 48 string flexDirection = layout == "horizontal" ? string.Empty : "flex-column"; 49 string flexGap = layout == "horizontal" ? "gap-3" : string.Empty; 50 string order = layout == "horizontal" ? string.Empty : "order-2"; 51 string theme = !string.IsNullOrWhiteSpace(Model.Item.GetRawValueString("Theme")) ? "theme " + Model.Item.GetRawValueString("Theme").Replace(" ", "").Trim().ToLower() : ""; 52 theme = GetViewParameter("theme") != null ? GetViewParameterString("theme") : theme; 53 54 string contentPadding = Model.Item.GetRawValueString("ContentPadding", ""); 55 contentPadding = contentPadding == "none" ? "p-0" : contentPadding; 56 contentPadding = contentPadding == "small" ? "p-1 px-md-2 py-md-1" : contentPadding; 57 contentPadding = contentPadding == "large" ? "p-2 px-md-3 py-md-2" : contentPadding; 58 59 string showPricesWithVat = Pageview.Area.EcomPricesWithVat.ToLower(); 60 bool neverShowVat = string.IsNullOrEmpty(showPricesWithVat); 61 62 string priceMin = ""; 63 string priceMax = ""; 64 65 string liveInfoClass = ""; 66 string productInfoFeed = ""; 67 bool isLazyLoadingForProductInfoEnabled = Dynamicweb.Core.Converter.ToBoolean(Dynamicweb.Context.Current.Items["IsLazyLoadingForProductInfoEnabled"]); 68 if (isLazyLoadingForProductInfoEnabled) 69 { 70 if (Dynamicweb.Context.Current.Items.Contains("ProductInfoFeed")) 71 { 72 productInfoFeed = Dynamicweb.Context.Current.Items["ProductInfoFeed"]?.ToString(); 73 if (!string.IsNullOrEmpty(productInfoFeed)) 74 { 75 productInfoFeed = $"data-product-info-feed=\"{productInfoFeed}\""; 76 } 77 } 78 liveInfoClass = "js-live-info"; 79 } 80 81 <div class="@textAlign @liveInfoClass item_@Model.Item.SystemName.ToLower()" data-product-id="@product.Id" data-variant-id="@product.VariantId" @productInfoFeed> 82 @if (showInformativePrice && product.PriceInformative.Price != 0) 83 { 84 <div class="opacity-50"> 85 <span>@Translate("RRP") </span> 86 <span class="text-decoration-line-through text-price">@product.PriceInformative.PriceFormatted</span> 87 </div> 88 } 89 <div class="@priceFontSize m-0 d-flex flex-wrap @flexDirection @flexGap @horizontalAlign" style="row-gap: 0 !important" itemprop="offers" itemscope itemtype="https://schema.org/Offer"> 90 <span itemprop="priceCurrency" content="@product.Price.CurrencyCode" class="d-none"></span> 91 92 93 @if (showPricesWithVat == "false" && !neverShowVat) 94 { 95 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 96 { 97 <span itemprop="price" content="" class="d-none"></span> 98 <span class="text-decoration-line-through js-text-decoration-line-through opacity-75 me-3 text-price js-text-price d-none" data-show-if="LiveProductInfo.product.Price.Price != LiveProductInfo.product.PriceBeforeDiscount.Price"></span> 99 } 100 else 101 { 102 string beforePrice = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).PriceBeforeDiscount.PriceWithoutVatFormatted : product.PriceBeforeDiscount.PriceWithoutVatFormatted; 103 104 <span itemprop="price" content="@product.Price.PriceWithoutVat.ToString("0.00", System.Globalization.CultureInfo.InvariantCulture)" class="d-none"></span> 105 if (product.Price.Price != product.PriceBeforeDiscount.Price) 106 { 107 <span class="text-decoration-line-through opacity-75 @order">@beforePrice</span> 108 } 109 } 110 } 111 else 112 { 113 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 114 { 115 <span itemprop="price" content="" class="d-none"></span> 116 <span class="text-decoration-line-through js-text-decoration-line-through opacity-75 me-3 text-price js-text-price d-none" data-show-if="LiveProductInfo.product.Price.Price != LiveProductInfo.product.PriceBeforeDiscount.Price"></span> 117 } 118 else 119 { 120 string beforePrice = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).PriceBeforeDiscount.PriceFormatted : product.PriceBeforeDiscount.PriceFormatted; 121 122 <span itemprop="price" content="@product.Price.Price.ToString("0.00", System.Globalization.CultureInfo.InvariantCulture)" class="d-none"></span> 123 124 if (product.Price.Price != product.PriceBeforeDiscount.Price) 125 { 126 <span class="text-decoration-line-through opacity-75 @order"> 127 <span class="text-price">@beforePrice</span> 128 </span> 129 } 130 } 131 } 132 133 @if (showPricesWithVat == "false" && !neverShowVat) 134 { 135 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 136 { 137 <span class="text-price js-text-price"> 138 <span class="spinner-border" role="status"></span> 139 </span> 140 } 141 else 142 { 143 string price = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).Price.PriceWithoutVatFormatted : product.Price.PriceWithoutVatFormatted; 144 145 if (product?.VariantInfo?.VariantInfo != null) 146 { 147 priceMin = product?.VariantInfo?.PriceMin?.PriceWithoutVatFormatted != null ? product.VariantInfo.PriceMin.PriceWithoutVatFormatted : ""; 148 priceMax = product?.VariantInfo?.PriceMax?.PriceWithoutVatFormatted != null ? product.VariantInfo.PriceMax.PriceWithoutVatFormatted : ""; 149 } 150 if (priceMin != priceMax) 151 { 152 price = priceMin + " - " + priceMax; 153 } 154 <span class="@theme @contentPadding"> 155 <span class="text-price">@price</span> 156 </span> 157 } 158 } 159 else 160 { 161 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 162 { 163 <span class="text-price js-text-price"> 164 <span class="spinner-border" role="status"></span> 165 </span> 166 } 167 else 168 { 169 string price = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).Price.PriceFormatted : product.Price.PriceFormatted; 170 171 if (product?.VariantInfo?.VariantInfo != null) 172 { 173 priceMin = product?.VariantInfo?.PriceMin?.PriceFormatted != null ? product.VariantInfo.PriceMin.PriceFormatted : ""; 174 priceMax = product?.VariantInfo?.PriceMax?.PriceFormatted != null ? product.VariantInfo.PriceMax.PriceFormatted : ""; 175 } 176 if (priceMin != priceMax) 177 { 178 price = priceMin + " - " + priceMax; 179 } 180 <span class="@theme @contentPadding"> 181 <span class="text-price">@price</span> 182 </span> 183 } 184 } 185 186 @* Stock state for Schema.org, start *@ 187 @{ 188 Uri url = Dynamicweb.Context.Current.Request.Url; 189 } 190 191 <link itemprop="url" href="@url"> 192 193 @{ 194 bool IsNeverOutOfStock = product.NeverOutOfstock; 195 } 196 197 @if (IsNeverOutOfStock) 198 { 199 <span itemprop="availability" class="d-none">@Translate("Available in stock")</span> 200 } 201 else 202 { 203 if (product.StockLevel > 0) 204 { 205 <span itemprop="availability" class="d-none">InStock</span> 206 } 207 else 208 { 209 <span itemprop="availability" class="d-none">OutOfStock</span> 210 } 211 } 212 @* Stock state for Schema.org, stop *@ 213 214 </div> 215 216 @if (showPricesWithVat == "false" && !neverShowVat) 217 { 218 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 219 { 220 <small class="opacity-85 fst-normal js-text-price-with-vat d-none" data-suffix="@Translate("Incl. VAT")"></small> 221 } 222 else 223 { 224 string price = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).Price.PriceWithVatFormatted : product.Price.PriceWithVatFormatted; 225 226 if (product?.VariantInfo?.VariantInfo != null) 227 { 228 priceMin = product?.VariantInfo?.PriceMin?.PriceWithVatFormatted != null ? product.VariantInfo.PriceMin.PriceWithVatFormatted : ""; 229 priceMax = product?.VariantInfo?.PriceMax?.PriceWithVatFormatted != null ? product.VariantInfo.PriceMax.PriceWithVatFormatted : ""; 230 } 231 if (priceMin != priceMax) 232 { 233 price = priceMin + " - " + priceMax; 234 } 235 <small class="opacity-85 fst-normal">@price @Translate("Incl. VAT")</small> 236 } 237 } 238 </div> 239 } 240 else if (Pageview.IsVisualEditorMode) 241 { 242 <div class="alert alert-dark m-0" role="alert"> 243 <span>@Translate("No products available")</span> 244 </div> 245 } 246
Error executing template "Designs/Swift/Paragraph/Swift_ProductPrice.cshtml"
System.NullReferenceException: Object reference not set to an instance of an object.
   at CompiledRazorTemplates.Dynamic.RazorEngine_b6db2496204747448307aebe7be7811f.ExecuteAsync()
   at RazorEngine.Templating.TemplateBase.Run(ExecuteContext context, TextWriter reader)
   at RazorEngine.Templating.RazorEngineCore.RunTemplate(ICompiledTemplate template, TextWriter writer, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineService.Run(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.DynamicWrapperService.Run(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineServiceExtensions.Run(IRazorEngineService service, String name, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineServiceExtensions.<>c__DisplayClass23_0.<Run>b__0(TextWriter writer)
   at RazorEngine.Templating.RazorEngineServiceExtensions.WithWriter(Action`1 withWriter)
   at RazorEngine.Templating.RazorEngineServiceExtensions.Run(IRazorEngineService service, String name, Type modelType, Object model, DynamicViewBag viewBag)
   at Dynamicweb.Rendering.RazorTemplateRenderingProvider.Render(Template template)
   at Dynamicweb.Rendering.TemplateRenderingService.Render(Template template)
   at Dynamicweb.Rendering.Template.RenderRazorTemplate()

1 @inherits Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 2 @using Dynamicweb.Ecommerce.ProductCatalog 3 4 @{ 5 ProductViewModel product = null; 6 if (Dynamicweb.Context.Current.Items.Contains("ProductDetails")) 7 { 8 product = (ProductViewModel)Dynamicweb.Context.Current.Items["ProductDetails"]; 9 } 10 else if (Pageview.Page.Item["DummyProduct"] != null && Pageview.IsVisualEditorMode) 11 { 12 var pageViewModel = Dynamicweb.Frontend.ContentViewModelFactory.CreatePageInfoViewModel(Pageview.Page); 13 ProductListViewModel productList = pageViewModel.Item.GetValue("DummyProduct") != null ? pageViewModel.Item.GetValue("DummyProduct") as ProductListViewModel : new ProductListViewModel(); 14 15 if (productList?.Products is object) 16 { 17 product = productList.Products[0]; 18 } 19 } 20 21 string anonymousUsersLimitations = Pageview.AreaSettings.GetRawValueString("AnonymousUsers", ""); 22 bool anonymousUser = Pageview.User == null; 23 bool isErpConnectionDown = !Dynamicweb.Core.Converter.ToBoolean(Dynamicweb.Context.Current.Items["IsWebServiceConnectionAvailable"]); 24 bool hidePrice = anonymousUsersLimitations.Contains("price") && anonymousUser || Pageview.AreaSettings.GetBoolean("ErpDownHidePrices") && isErpConnectionDown; 25 hidePrice = !hidePrice && product.Id != null && !Convert.ToBoolean(product.ProductFields["Custom_EnableAnonymousPurchase"]?.Value) && anonymousUser ? true : hidePrice; // #22458 26 hidePrice = Pageview.IsVisualEditorMode ? false : hidePrice; // #22458 27 28 bool productIsDiscontinued = product is object && product.Discontinued; 29 bool doNotShowPriceIfProductIsDiscontinued = Model.Item.GetBoolean("DoNotShowPriceIfProductIsDiscontinued"); 30 var isDiscontinued = productIsDiscontinued && doNotShowPriceIfProductIsDiscontinued; 31 } 32 33 @if (product is object && !hidePrice && !isDiscontinued) { 34 bool showInformativePrice = Model.Item.GetBoolean("ShowInformativePrice"); 35 string unitId = !string.IsNullOrEmpty(Dynamicweb.Context.Current.Request.Form.Get("UnitId")) ? Dynamicweb.Context.Current.Request.Form.Get("UnitId") : string.Empty; 36 37 string priceFontSize = Model.Item.GetRawValueString("PriceSize", "fs-2"); 38 string horizontalAlign = Model.Item.GetRawValueString("HorizontalAlignment", ""); 39 string layout = Model.Item.GetRawValueString("Layout", "horizontal"); 40 string textAlign = horizontalAlign == "center" ? "text-center" : string.Empty; 41 textAlign = horizontalAlign == "end" ? "text-end" : textAlign; 42 43 horizontalAlign = horizontalAlign == "center" && layout == "horizontal" ? "justify-content-center" : horizontalAlign; 44 horizontalAlign = horizontalAlign == "end" && layout == "horizontal" ? "justify-content-end" : horizontalAlign; 45 horizontalAlign = horizontalAlign == "center" && layout == "vertical" ? "align-items-center" : horizontalAlign; 46 horizontalAlign = horizontalAlign == "end" && layout == "vertical" ? "align-items-end" : horizontalAlign; 47 48 string flexDirection = layout == "horizontal" ? string.Empty : "flex-column"; 49 string flexGap = layout == "horizontal" ? "gap-3" : string.Empty; 50 string order = layout == "horizontal" ? string.Empty : "order-2"; 51 string theme = !string.IsNullOrWhiteSpace(Model.Item.GetRawValueString("Theme")) ? "theme " + Model.Item.GetRawValueString("Theme").Replace(" ", "").Trim().ToLower() : ""; 52 theme = GetViewParameter("theme") != null ? GetViewParameterString("theme") : theme; 53 54 string contentPadding = Model.Item.GetRawValueString("ContentPadding", ""); 55 contentPadding = contentPadding == "none" ? "p-0" : contentPadding; 56 contentPadding = contentPadding == "small" ? "p-1 px-md-2 py-md-1" : contentPadding; 57 contentPadding = contentPadding == "large" ? "p-2 px-md-3 py-md-2" : contentPadding; 58 59 string showPricesWithVat = Pageview.Area.EcomPricesWithVat.ToLower(); 60 bool neverShowVat = string.IsNullOrEmpty(showPricesWithVat); 61 62 string priceMin = ""; 63 string priceMax = ""; 64 65 string liveInfoClass = ""; 66 string productInfoFeed = ""; 67 bool isLazyLoadingForProductInfoEnabled = Dynamicweb.Core.Converter.ToBoolean(Dynamicweb.Context.Current.Items["IsLazyLoadingForProductInfoEnabled"]); 68 if (isLazyLoadingForProductInfoEnabled) 69 { 70 if (Dynamicweb.Context.Current.Items.Contains("ProductInfoFeed")) 71 { 72 productInfoFeed = Dynamicweb.Context.Current.Items["ProductInfoFeed"]?.ToString(); 73 if (!string.IsNullOrEmpty(productInfoFeed)) 74 { 75 productInfoFeed = $"data-product-info-feed=\"{productInfoFeed}\""; 76 } 77 } 78 liveInfoClass = "js-live-info"; 79 } 80 81 <div class="@textAlign @liveInfoClass item_@Model.Item.SystemName.ToLower()" data-product-id="@product.Id" data-variant-id="@product.VariantId" @productInfoFeed> 82 @if (showInformativePrice && product.PriceInformative.Price != 0) 83 { 84 <div class="opacity-50"> 85 <span>@Translate("RRP") </span> 86 <span class="text-decoration-line-through text-price">@product.PriceInformative.PriceFormatted</span> 87 </div> 88 } 89 <div class="@priceFontSize m-0 d-flex flex-wrap @flexDirection @flexGap @horizontalAlign" style="row-gap: 0 !important" itemprop="offers" itemscope itemtype="https://schema.org/Offer"> 90 <span itemprop="priceCurrency" content="@product.Price.CurrencyCode" class="d-none"></span> 91 92 93 @if (showPricesWithVat == "false" && !neverShowVat) 94 { 95 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 96 { 97 <span itemprop="price" content="" class="d-none"></span> 98 <span class="text-decoration-line-through js-text-decoration-line-through opacity-75 me-3 text-price js-text-price d-none" data-show-if="LiveProductInfo.product.Price.Price != LiveProductInfo.product.PriceBeforeDiscount.Price"></span> 99 } 100 else 101 { 102 string beforePrice = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).PriceBeforeDiscount.PriceWithoutVatFormatted : product.PriceBeforeDiscount.PriceWithoutVatFormatted; 103 104 <span itemprop="price" content="@product.Price.PriceWithoutVat.ToString("0.00", System.Globalization.CultureInfo.InvariantCulture)" class="d-none"></span> 105 if (product.Price.Price != product.PriceBeforeDiscount.Price) 106 { 107 <span class="text-decoration-line-through opacity-75 @order">@beforePrice</span> 108 } 109 } 110 } 111 else 112 { 113 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 114 { 115 <span itemprop="price" content="" class="d-none"></span> 116 <span class="text-decoration-line-through js-text-decoration-line-through opacity-75 me-3 text-price js-text-price d-none" data-show-if="LiveProductInfo.product.Price.Price != LiveProductInfo.product.PriceBeforeDiscount.Price"></span> 117 } 118 else 119 { 120 string beforePrice = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).PriceBeforeDiscount.PriceFormatted : product.PriceBeforeDiscount.PriceFormatted; 121 122 <span itemprop="price" content="@product.Price.Price.ToString("0.00", System.Globalization.CultureInfo.InvariantCulture)" class="d-none"></span> 123 124 if (product.Price.Price != product.PriceBeforeDiscount.Price) 125 { 126 <span class="text-decoration-line-through opacity-75 @order"> 127 <span class="text-price">@beforePrice</span> 128 </span> 129 } 130 } 131 } 132 133 @if (showPricesWithVat == "false" && !neverShowVat) 134 { 135 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 136 { 137 <span class="text-price js-text-price"> 138 <span class="spinner-border" role="status"></span> 139 </span> 140 } 141 else 142 { 143 string price = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).Price.PriceWithoutVatFormatted : product.Price.PriceWithoutVatFormatted; 144 145 if (product?.VariantInfo?.VariantInfo != null) 146 { 147 priceMin = product?.VariantInfo?.PriceMin?.PriceWithoutVatFormatted != null ? product.VariantInfo.PriceMin.PriceWithoutVatFormatted : ""; 148 priceMax = product?.VariantInfo?.PriceMax?.PriceWithoutVatFormatted != null ? product.VariantInfo.PriceMax.PriceWithoutVatFormatted : ""; 149 } 150 if (priceMin != priceMax) 151 { 152 price = priceMin + " - " + priceMax; 153 } 154 <span class="@theme @contentPadding"> 155 <span class="text-price">@price</span> 156 </span> 157 } 158 } 159 else 160 { 161 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 162 { 163 <span class="text-price js-text-price"> 164 <span class="spinner-border" role="status"></span> 165 </span> 166 } 167 else 168 { 169 string price = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).Price.PriceFormatted : product.Price.PriceFormatted; 170 171 if (product?.VariantInfo?.VariantInfo != null) 172 { 173 priceMin = product?.VariantInfo?.PriceMin?.PriceFormatted != null ? product.VariantInfo.PriceMin.PriceFormatted : ""; 174 priceMax = product?.VariantInfo?.PriceMax?.PriceFormatted != null ? product.VariantInfo.PriceMax.PriceFormatted : ""; 175 } 176 if (priceMin != priceMax) 177 { 178 price = priceMin + " - " + priceMax; 179 } 180 <span class="@theme @contentPadding"> 181 <span class="text-price">@price</span> 182 </span> 183 } 184 } 185 186 @* Stock state for Schema.org, start *@ 187 @{ 188 Uri url = Dynamicweb.Context.Current.Request.Url; 189 } 190 191 <link itemprop="url" href="@url"> 192 193 @{ 194 bool IsNeverOutOfStock = product.NeverOutOfstock; 195 } 196 197 @if (IsNeverOutOfStock) 198 { 199 <span itemprop="availability" class="d-none">@Translate("Available in stock")</span> 200 } 201 else 202 { 203 if (product.StockLevel > 0) 204 { 205 <span itemprop="availability" class="d-none">InStock</span> 206 } 207 else 208 { 209 <span itemprop="availability" class="d-none">OutOfStock</span> 210 } 211 } 212 @* Stock state for Schema.org, stop *@ 213 214 </div> 215 216 @if (showPricesWithVat == "false" && !neverShowVat) 217 { 218 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 219 { 220 <small class="opacity-85 fst-normal js-text-price-with-vat d-none" data-suffix="@Translate("Incl. VAT")"></small> 221 } 222 else 223 { 224 string price = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).Price.PriceWithVatFormatted : product.Price.PriceWithVatFormatted; 225 226 if (product?.VariantInfo?.VariantInfo != null) 227 { 228 priceMin = product?.VariantInfo?.PriceMin?.PriceWithVatFormatted != null ? product.VariantInfo.PriceMin.PriceWithVatFormatted : ""; 229 priceMax = product?.VariantInfo?.PriceMax?.PriceWithVatFormatted != null ? product.VariantInfo.PriceMax.PriceWithVatFormatted : ""; 230 } 231 if (priceMin != priceMax) 232 { 233 price = priceMin + " - " + priceMax; 234 } 235 <small class="opacity-85 fst-normal">@price @Translate("Incl. VAT")</small> 236 } 237 } 238 </div> 239 } 240 else if (Pageview.IsVisualEditorMode) 241 { 242 <div class="alert alert-dark m-0" role="alert"> 243 <span>@Translate("No products available")</span> 244 </div> 245 } 246

Vejl. pris:

Error executing template "Designs/Swift/Paragraph/Swift_ProductPrice.cshtml"
System.NullReferenceException: Object reference not set to an instance of an object.
   at CompiledRazorTemplates.Dynamic.RazorEngine_b6db2496204747448307aebe7be7811f.ExecuteAsync()
   at RazorEngine.Templating.TemplateBase.Run(ExecuteContext context, TextWriter reader)
   at RazorEngine.Templating.RazorEngineCore.RunTemplate(ICompiledTemplate template, TextWriter writer, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineService.Run(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.DynamicWrapperService.Run(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineServiceExtensions.Run(IRazorEngineService service, String name, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineServiceExtensions.<>c__DisplayClass23_0.<Run>b__0(TextWriter writer)
   at RazorEngine.Templating.RazorEngineServiceExtensions.WithWriter(Action`1 withWriter)
   at RazorEngine.Templating.RazorEngineServiceExtensions.Run(IRazorEngineService service, String name, Type modelType, Object model, DynamicViewBag viewBag)
   at Dynamicweb.Rendering.RazorTemplateRenderingProvider.Render(Template template)
   at Dynamicweb.Rendering.TemplateRenderingService.Render(Template template)
   at Dynamicweb.Rendering.Template.RenderRazorTemplate()

1 @inherits Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> 2 @using Dynamicweb.Ecommerce.ProductCatalog 3 4 @{ 5 ProductViewModel product = null; 6 if (Dynamicweb.Context.Current.Items.Contains("ProductDetails")) 7 { 8 product = (ProductViewModel)Dynamicweb.Context.Current.Items["ProductDetails"]; 9 } 10 else if (Pageview.Page.Item["DummyProduct"] != null && Pageview.IsVisualEditorMode) 11 { 12 var pageViewModel = Dynamicweb.Frontend.ContentViewModelFactory.CreatePageInfoViewModel(Pageview.Page); 13 ProductListViewModel productList = pageViewModel.Item.GetValue("DummyProduct") != null ? pageViewModel.Item.GetValue("DummyProduct") as ProductListViewModel : new ProductListViewModel(); 14 15 if (productList?.Products is object) 16 { 17 product = productList.Products[0]; 18 } 19 } 20 21 string anonymousUsersLimitations = Pageview.AreaSettings.GetRawValueString("AnonymousUsers", ""); 22 bool anonymousUser = Pageview.User == null; 23 bool isErpConnectionDown = !Dynamicweb.Core.Converter.ToBoolean(Dynamicweb.Context.Current.Items["IsWebServiceConnectionAvailable"]); 24 bool hidePrice = anonymousUsersLimitations.Contains("price") && anonymousUser || Pageview.AreaSettings.GetBoolean("ErpDownHidePrices") && isErpConnectionDown; 25 hidePrice = !hidePrice && product.Id != null && !Convert.ToBoolean(product.ProductFields["Custom_EnableAnonymousPurchase"]?.Value) && anonymousUser ? true : hidePrice; // #22458 26 hidePrice = Pageview.IsVisualEditorMode ? false : hidePrice; // #22458 27 28 bool productIsDiscontinued = product is object && product.Discontinued; 29 bool doNotShowPriceIfProductIsDiscontinued = Model.Item.GetBoolean("DoNotShowPriceIfProductIsDiscontinued"); 30 var isDiscontinued = productIsDiscontinued && doNotShowPriceIfProductIsDiscontinued; 31 } 32 33 @if (product is object && !hidePrice && !isDiscontinued) { 34 bool showInformativePrice = Model.Item.GetBoolean("ShowInformativePrice"); 35 string unitId = !string.IsNullOrEmpty(Dynamicweb.Context.Current.Request.Form.Get("UnitId")) ? Dynamicweb.Context.Current.Request.Form.Get("UnitId") : string.Empty; 36 37 string priceFontSize = Model.Item.GetRawValueString("PriceSize", "fs-2"); 38 string horizontalAlign = Model.Item.GetRawValueString("HorizontalAlignment", ""); 39 string layout = Model.Item.GetRawValueString("Layout", "horizontal"); 40 string textAlign = horizontalAlign == "center" ? "text-center" : string.Empty; 41 textAlign = horizontalAlign == "end" ? "text-end" : textAlign; 42 43 horizontalAlign = horizontalAlign == "center" && layout == "horizontal" ? "justify-content-center" : horizontalAlign; 44 horizontalAlign = horizontalAlign == "end" && layout == "horizontal" ? "justify-content-end" : horizontalAlign; 45 horizontalAlign = horizontalAlign == "center" && layout == "vertical" ? "align-items-center" : horizontalAlign; 46 horizontalAlign = horizontalAlign == "end" && layout == "vertical" ? "align-items-end" : horizontalAlign; 47 48 string flexDirection = layout == "horizontal" ? string.Empty : "flex-column"; 49 string flexGap = layout == "horizontal" ? "gap-3" : string.Empty; 50 string order = layout == "horizontal" ? string.Empty : "order-2"; 51 string theme = !string.IsNullOrWhiteSpace(Model.Item.GetRawValueString("Theme")) ? "theme " + Model.Item.GetRawValueString("Theme").Replace(" ", "").Trim().ToLower() : ""; 52 theme = GetViewParameter("theme") != null ? GetViewParameterString("theme") : theme; 53 54 string contentPadding = Model.Item.GetRawValueString("ContentPadding", ""); 55 contentPadding = contentPadding == "none" ? "p-0" : contentPadding; 56 contentPadding = contentPadding == "small" ? "p-1 px-md-2 py-md-1" : contentPadding; 57 contentPadding = contentPadding == "large" ? "p-2 px-md-3 py-md-2" : contentPadding; 58 59 string showPricesWithVat = Pageview.Area.EcomPricesWithVat.ToLower(); 60 bool neverShowVat = string.IsNullOrEmpty(showPricesWithVat); 61 62 string priceMin = ""; 63 string priceMax = ""; 64 65 string liveInfoClass = ""; 66 string productInfoFeed = ""; 67 bool isLazyLoadingForProductInfoEnabled = Dynamicweb.Core.Converter.ToBoolean(Dynamicweb.Context.Current.Items["IsLazyLoadingForProductInfoEnabled"]); 68 if (isLazyLoadingForProductInfoEnabled) 69 { 70 if (Dynamicweb.Context.Current.Items.Contains("ProductInfoFeed")) 71 { 72 productInfoFeed = Dynamicweb.Context.Current.Items["ProductInfoFeed"]?.ToString(); 73 if (!string.IsNullOrEmpty(productInfoFeed)) 74 { 75 productInfoFeed = $"data-product-info-feed=\"{productInfoFeed}\""; 76 } 77 } 78 liveInfoClass = "js-live-info"; 79 } 80 81 <div class="@textAlign @liveInfoClass item_@Model.Item.SystemName.ToLower()" data-product-id="@product.Id" data-variant-id="@product.VariantId" @productInfoFeed> 82 @if (showInformativePrice && product.PriceInformative.Price != 0) 83 { 84 <div class="opacity-50"> 85 <span>@Translate("RRP") </span> 86 <span class="text-decoration-line-through text-price">@product.PriceInformative.PriceFormatted</span> 87 </div> 88 } 89 <div class="@priceFontSize m-0 d-flex flex-wrap @flexDirection @flexGap @horizontalAlign" style="row-gap: 0 !important" itemprop="offers" itemscope itemtype="https://schema.org/Offer"> 90 <span itemprop="priceCurrency" content="@product.Price.CurrencyCode" class="d-none"></span> 91 92 93 @if (showPricesWithVat == "false" && !neverShowVat) 94 { 95 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 96 { 97 <span itemprop="price" content="" class="d-none"></span> 98 <span class="text-decoration-line-through js-text-decoration-line-through opacity-75 me-3 text-price js-text-price d-none" data-show-if="LiveProductInfo.product.Price.Price != LiveProductInfo.product.PriceBeforeDiscount.Price"></span> 99 } 100 else 101 { 102 string beforePrice = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).PriceBeforeDiscount.PriceWithoutVatFormatted : product.PriceBeforeDiscount.PriceWithoutVatFormatted; 103 104 <span itemprop="price" content="@product.Price.PriceWithoutVat.ToString("0.00", System.Globalization.CultureInfo.InvariantCulture)" class="d-none"></span> 105 if (product.Price.Price != product.PriceBeforeDiscount.Price) 106 { 107 <span class="text-decoration-line-through opacity-75 @order">@beforePrice</span> 108 } 109 } 110 } 111 else 112 { 113 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 114 { 115 <span itemprop="price" content="" class="d-none"></span> 116 <span class="text-decoration-line-through js-text-decoration-line-through opacity-75 me-3 text-price js-text-price d-none" data-show-if="LiveProductInfo.product.Price.Price != LiveProductInfo.product.PriceBeforeDiscount.Price"></span> 117 } 118 else 119 { 120 string beforePrice = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).PriceBeforeDiscount.PriceFormatted : product.PriceBeforeDiscount.PriceFormatted; 121 122 <span itemprop="price" content="@product.Price.Price.ToString("0.00", System.Globalization.CultureInfo.InvariantCulture)" class="d-none"></span> 123 124 if (product.Price.Price != product.PriceBeforeDiscount.Price) 125 { 126 <span class="text-decoration-line-through opacity-75 @order"> 127 <span class="text-price">@beforePrice</span> 128 </span> 129 } 130 } 131 } 132 133 @if (showPricesWithVat == "false" && !neverShowVat) 134 { 135 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 136 { 137 <span class="text-price js-text-price"> 138 <span class="spinner-border" role="status"></span> 139 </span> 140 } 141 else 142 { 143 string price = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).Price.PriceWithoutVatFormatted : product.Price.PriceWithoutVatFormatted; 144 145 if (product?.VariantInfo?.VariantInfo != null) 146 { 147 priceMin = product?.VariantInfo?.PriceMin?.PriceWithoutVatFormatted != null ? product.VariantInfo.PriceMin.PriceWithoutVatFormatted : ""; 148 priceMax = product?.VariantInfo?.PriceMax?.PriceWithoutVatFormatted != null ? product.VariantInfo.PriceMax.PriceWithoutVatFormatted : ""; 149 } 150 if (priceMin != priceMax) 151 { 152 price = priceMin + " - " + priceMax; 153 } 154 <span class="@theme @contentPadding"> 155 <span class="text-price">@price</span> 156 </span> 157 } 158 } 159 else 160 { 161 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 162 { 163 <span class="text-price js-text-price"> 164 <span class="spinner-border" role="status"></span> 165 </span> 166 } 167 else 168 { 169 string price = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).Price.PriceFormatted : product.Price.PriceFormatted; 170 171 if (product?.VariantInfo?.VariantInfo != null) 172 { 173 priceMin = product?.VariantInfo?.PriceMin?.PriceFormatted != null ? product.VariantInfo.PriceMin.PriceFormatted : ""; 174 priceMax = product?.VariantInfo?.PriceMax?.PriceFormatted != null ? product.VariantInfo.PriceMax.PriceFormatted : ""; 175 } 176 if (priceMin != priceMax) 177 { 178 price = priceMin + " - " + priceMax; 179 } 180 <span class="@theme @contentPadding"> 181 <span class="text-price">@price</span> 182 </span> 183 } 184 } 185 186 @* Stock state for Schema.org, start *@ 187 @{ 188 Uri url = Dynamicweb.Context.Current.Request.Url; 189 } 190 191 <link itemprop="url" href="@url"> 192 193 @{ 194 bool IsNeverOutOfStock = product.NeverOutOfstock; 195 } 196 197 @if (IsNeverOutOfStock) 198 { 199 <span itemprop="availability" class="d-none">@Translate("Available in stock")</span> 200 } 201 else 202 { 203 if (product.StockLevel > 0) 204 { 205 <span itemprop="availability" class="d-none">InStock</span> 206 } 207 else 208 { 209 <span itemprop="availability" class="d-none">OutOfStock</span> 210 } 211 } 212 @* Stock state for Schema.org, stop *@ 213 214 </div> 215 216 @if (showPricesWithVat == "false" && !neverShowVat) 217 { 218 if (isLazyLoadingForProductInfoEnabled && !Pageview.IsVisualEditorMode) 219 { 220 <small class="opacity-85 fst-normal js-text-price-with-vat d-none" data-suffix="@Translate("Incl. VAT")"></small> 221 } 222 else 223 { 224 string price = !string.IsNullOrEmpty(unitId) ? product.GetPrice(unitId).Price.PriceWithVatFormatted : product.Price.PriceWithVatFormatted; 225 226 if (product?.VariantInfo?.VariantInfo != null) 227 { 228 priceMin = product?.VariantInfo?.PriceMin?.PriceWithVatFormatted != null ? product.VariantInfo.PriceMin.PriceWithVatFormatted : ""; 229 priceMax = product?.VariantInfo?.PriceMax?.PriceWithVatFormatted != null ? product.VariantInfo.PriceMax.PriceWithVatFormatted : ""; 230 } 231 if (priceMin != priceMax) 232 { 233 price = priceMin + " - " + priceMax; 234 } 235 <small class="opacity-85 fst-normal">@price @Translate("Incl. VAT")</small> 236 } 237 } 238 </div> 239 } 240 else if (Pageview.IsVisualEditorMode) 241 { 242 <div class="alert alert-dark m-0" role="alert"> 243 <span>@Translate("No products available")</span> 244 </div> 245 } 246
Error executing template "Designs/Swift/Paragraph/Swift_ProductAddToCart.cshtml"
System.NullReferenceException: Object reference not set to an instance of an object.
   at CompiledRazorTemplates.Dynamic.RazorEngine_e2d5972699e94c7e9e19dc476930e685.ExecuteAsync()
   at RazorEngine.Templating.TemplateBase.Run(ExecuteContext context, TextWriter reader)
   at RazorEngine.Templating.RazorEngineCore.RunTemplate(ICompiledTemplate template, TextWriter writer, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineService.Run(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.DynamicWrapperService.Run(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineServiceExtensions.Run(IRazorEngineService service, String name, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
   at RazorEngine.Templating.RazorEngineServiceExtensions.<>c__DisplayClass23_0.<Run>b__0(TextWriter writer)
   at RazorEngine.Templating.RazorEngineServiceExtensions.WithWriter(Action`1 withWriter)
   at RazorEngine.Templating.RazorEngineServiceExtensions.Run(IRazorEngineService service, String name, Type modelType, Object model, DynamicViewBag viewBag)
   at Dynamicweb.Rendering.RazorTemplateRenderingProvider.Render(Template template)
   at Dynamicweb.Rendering.TemplateRenderingService.Render(Template template)
   at Dynamicweb.Rendering.Template.RenderRazorTemplate()

1 @inherits Dynamicweb.Rendering.ViewModelTemplate<Dynamicweb.Frontend.ParagraphViewModel> @using Dynamicweb.Ecommerce.ProductCatalog @using Dynamicweb.Core.Encoders @using System.Globalization @functions { string DoubleToString(double? value) { if (value.HasValue) { return value.Value.ToString(CultureInfo.InvariantCulture); } return null; } } @{ ProductViewModel product = null; if (Dynamicweb.Context.Current.Items.Contains("ProductDetails")) { product = (ProductViewModel)Dynamicweb.Context.Current.Items["ProductDetails"]; } else if (Pageview.Page.Item["DummyProduct"] != null && Pageview.IsVisualEditorMode) { var pageViewModel = Dynamicweb.Frontend.ContentViewModelFactory.CreatePageInfoViewModel(Pageview.Page); ProductListViewModel productList = pageViewModel.Item.GetValue("DummyProduct") != null ? pageViewModel.Item.GetValue("DummyProduct") as ProductListViewModel : new ProductListViewModel(); if (productList?.Products is object) { product = productList.Products[0]; } } string anonymousUsersLimitations = Pageview.AreaSettings.GetRawValueString("AnonymousUsers", ""); bool anonymousUser = Pageview.User == null; bool isErpConnectionDown = !Dynamicweb.Core.Converter.ToBoolean(Dynamicweb.Context.Current.Items["IsWebServiceConnectionAvailable"]); bool hideAddToCart = anonymousUsersLimitations.Contains("cart") && anonymousUser || Pageview.AreaSettings.GetBoolean("ErpDownHideAddToCart") && isErpConnectionDown; hideAddToCart = !hideAddToCart && product.Id != null && !Convert.ToBoolean(product.ProductFields["Custom_EnableAnonymousPurchase"]?.Value) && anonymousUser ? true : hideAddToCart; // #22458 hideAddToCart = Pageview.IsVisualEditorMode ? false : hideAddToCart; } @if (product is object && !hideAddToCart) { string horizontalAlign = Model.Item.GetRawValueString("HorizontalAlignment", ""); horizontalAlign = horizontalAlign == "center" ? "justify-content-center" : horizontalAlign; horizontalAlign = horizontalAlign == "end" ? "justify-content-end" : horizontalAlign; horizontalAlign = horizontalAlign == "full" ? "" : horizontalAlign; bool favoritesSelector = !string.IsNullOrEmpty(Model.Item.GetString("ShowAddToFavorites")) ? Model.Item.GetBoolean("ShowAddToFavorites") : false; bool quantitySelector = !string.IsNullOrEmpty(Model.Item.GetString("ShowQuantitySelector")) ? Model.Item.GetBoolean("ShowQuantitySelector") : false; bool unitsSelector = !string.IsNullOrEmpty(Model.Item.GetString("ShowUnitsSelector")) ? Model.Item.GetBoolean("ShowUnitsSelector") : false; bool hideInventory = !string.IsNullOrEmpty(Model.Item.GetString("HideInventory")) ? Model.Item.GetBoolean("HideInventory") : false; bool hideStockState = !string.IsNullOrEmpty(Model.Item.GetString("HideStockState")) ? Model.Item.GetBoolean("HideStockState") : false; string buttonSize = Model.Item.GetRawValueString("ButtonSize", "regular"); string inputSize = string.Empty; switch (buttonSize) { case "small": inputSize = " input-group-sm"; buttonSize = " btn-sm"; break; case "regular": buttonSize = string.Empty; break; case "large": inputSize = " input-group-lg"; buttonSize = " btn-lg"; break; } string iconPath = "/Files/icons/"; string url = "/Default.aspx?ID=" + (GetPageIdByNavigationTag("CartService")); if (!url.Contains("LayoutTemplate")) { url += url.Contains("?") ? "&LayoutTemplate=Swift_MiniCart.cshtml" : "?LayoutTemplate=Swift_MiniCart.cshtml"; } string whenVariantsExist = Model.Item.GetRawValueString("WhenVariantsExist", "hide"); string flexFill = Model.Item.GetRawValueString("HorizontalAlignment", "") == "full" ? "flex-fill" : ""; string fullWidth = Model.Item.GetRawValueString("HorizontalAlignment", "") == "full" ? "w-100" : ""; string addToCartIcon = Model.Item.GetRawValueString("Icon", iconPath + "shopping-cart.svg"); string addToCartLabel = !addToCartIcon.Contains("_none") ? $"<span class=\"icon-2\">{ReadFile(addToCartIcon)}</span>" : ""; addToCartLabel += !addToCartIcon.Contains("_none") && !Model.Item.GetBoolean("HideButtonText") ? " " : ""; addToCartLabel += !Model.Item.GetBoolean("HideButtonText") ? $"<span class=\"d-none d-md-inline\">{Translate("Add to cart")}</span><span class=\"d-inline d-md-none\">{Translate("Add")}</span>" : ""; bool isLazyLoadingForProductInfoEnabled = Dynamicweb.Core.Converter.ToBoolean(Dynamicweb.Context.Current.Items["IsLazyLoadingForProductInfoEnabled"]); bool userHasPendingQuote = Dynamicweb.Ecommerce.Common.Context.Cart != null && Dynamicweb.Ecommerce.Common.Context.Cart.IsQuote; if (product.VariantInfo.VariantInfo == null || whenVariantsExist == "disable") { string unitId = !string.IsNullOrEmpty(Dynamicweb.Context.Current.Request.Form.Get("UnitId")) ? Dynamicweb.Context.Current.Request.Form.Get("UnitId") : product.DefaultUnitId; if (string.IsNullOrEmpty(unitId) && product?.UnitOptions != null) { if (product.UnitOptions.FirstOrDefault<UnitOptionViewModel>() != null) { unitId = product.UnitOptions.FirstOrDefault<UnitOptionViewModel>().Id; } } double? stepQty = product.PurchaseQuantityStep > 0 ? product.PurchaseQuantityStep : 1; double? minQty = product.PurchaseMinimumQuantity > 0 ? product.PurchaseMinimumQuantity : 1; double? valueQty = minQty > stepQty ? minQty : stepQty; string disableAddToCart = null; double? maxQty = null; if (product.ProductType == Dynamicweb.Ecommerce.Products.ProductType.Stock && !product.NeverOutOfstock) { disableAddToCart = (product.StockLevel <= 0) || (!product.NeverOutOfstock && isLazyLoadingForProductInfoEnabled) ? "disabled" : disableAddToCart; maxQty = product.StockLevel; } disableAddToCart = whenVariantsExist == "disable" && product.VariantInfo.VariantInfo != null && string.IsNullOrEmpty(product.VariantId) ? "disabled" : disableAddToCart; disableAddToCart = product.Discontinued ? "disabled" : disableAddToCart; if (unitsSelector && product.UnitOptions.Count > 0) { <form method="post" action="/Default.aspx?ID=@(Pageview.Page.ID)&ProductId=@product.Id" id="UnitSelectorForm_@(product.Id)_@(product.VariantId.Replace(".", "_"))_@Model.ID"> <input type="hidden" name="redirect" value="false"> <input type="hidden" name="VariantID" value="@product.VariantId"> <input type="hidden" name="UnitID" class="js-unit-id" value="@unitId"> </form> } <div class="d-flex @horizontalAlign @fullWidth js-input-group item_@Model.Item.SystemName.ToLower()"> @if (!anonymousUser && favoritesSelector) { @RenderPartial("Components/ToggleFavorite.cshtml", product) } <form method="post" action="@url" class="@fullWidth" style="z-index: 1"> <input type="hidden" name="redirect" value="false"> <input type="hidden" name="ProductId" value="@product.Id"> <input type="hidden" name="ProductName" value="@HtmlEncoder.HtmlEncode(product.Name)"> <input type="hidden" name="ProductVariantName" value="@product.VariantName"> <input type="hidden" name="ProductCurrency" value="@Dynamicweb.Ecommerce.Common.Context.Currency.Code"> <input type="hidden" name="ProductPrice" value="@product.Price.ToStringInvariant()"> <input type="hidden" name="ProductDiscount" value="@product.Discount.ToStringInvariant()"> <input type="hidden" name="ProductReferer" value="component_ProductAddToCart"> <input type="hidden" name="cartcmd" value="add"> <input type="submit" class="d-none" onclick="event.preventDefault(); swift.Cart.Update(event)"> @* Fix for enterKey should not redirect to minicart page *@ @if (!string.IsNullOrEmpty(product.VariantId)) { <input type="hidden" name="VariantId" value="@product.VariantId"> } <template class="js-step-quantity-warning"> <div class="modal-header"> <h1 class="modal-title fs-5">@Translate("The quantity is not valid")</h1> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> @Translate("Please select a quantity that is dividable by") @stepQty </div> </template> <template class="js-min-quantity-warning"> <div class="modal-header"> <h1 class="modal-title fs-5">@Translate("The product could not be added to the cart")</h1> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> @Translate("The quantity is not valid. You must buy at least") @product.PurchaseMinimumQuantity </div> </template> <template class="js-value-missing-warning"> <div class="modal-header"> <h1 class="modal-title fs-5">@Translate("No amount specified")</h1> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> @Translate("Specify an amount to add to the cart") </div> </template> @if (userHasPendingQuote) { <input type="hidden" name="PendingQuote" value="true"> <template class="js-pending-quote-notice"> <div class="modal-header"> <h1 class="modal-title fs-5">@Translate("Pending Quote")</h1> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="@Translate("Close")"></button> </div> <div class="modal-body"> @Translate("You need to complete your current quote or empty the cart before adding this product to cart.") </div> </template> } @if (quantitySelector || (!anonymousUser && product.VariantInfo.VariantInfo != null) || (!anonymousUser && favoritesSelector)) { <input type="hidden" id="Unit_@(product.Id)_@product.VariantId.Replace(".", "_")" name="UnitID" value="@unitId" /> } <div class="d-flex flex-row w-100"> @if (!quantitySelector) { <input id="Quantity_@(product.Id)_@product.VariantId.Replace(".", "_")" class="swift_quantity_field" name="Quantity" value="@valueQty" type="hidden" @disableAddToCart> } @if (unitsSelector && product.UnitOptions.Count > 0) { string selectedUnitName = !string.IsNullOrEmpty(unitId) && product?.UnitOptions != null ? unitId : product.UnitOptions.FirstOrDefault<UnitOptionViewModel>().Name; foreach (var unitOption in product.UnitOptions) { if (unitOption.Id == unitId) { selectedUnitName = unitOption.Name; } } <div class="d-flex flex-column gap-2 w-100"> <div class="input-group input-primary-button-group flex-nowrap@(inputSize)"> @if (quantitySelector) { <input id="Quantity_@(product.Id)_@product.VariantId.Replace(".", "_")" name="Quantity" value="@DoubleToString(valueQty)" step="@DoubleToString(stepQty)" min="@DoubleToString(minQty)" max="@DoubleToString(maxQty)" class="form-control swift_quantity-field" style="min-width: 60px; max-width: 100px; z-index: 1" type="number" @disableAddToCart> } <button class="btn btn-secondary @flexFill dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false"> @selectedUnitName </button> <ul class="dropdown-menu swift_unit-field"> @foreach (var unitOption in product.UnitOptions) { var selectedUnit = unitOption.Id == unitId ? "selected" : ""; <li> <button type="button" class="btn dropdown-item" data-value="@unitOption.Id" onclick="document.querySelector('#UnitSelectorForm_@(product.Id)_@(product.VariantId.Replace(".", "_"))_@Model.ID').querySelector('.js-unit-id').value = this.getAttribute('data-value'); document.querySelector('#Unit_@(product.Id)_@product.VariantId.Replace(".", "_")').value = this.getAttribute('data-value'); swift.PageUpdater.Update(document.querySelector('#UnitSelectorForm_@(product.Id)_@(product.VariantId.Replace(".", "_"))_@Model.ID'))"> <span>@unitOption.Name</span> <span> @if (unitOption.StockLevel > 0 || unitOption.NeverOutOfStock) { if (!Model.Item.GetBoolean("HideInventory") && !unitOption.NeverOutOfStock) { <span class="small text-success">@unitOption.StockLevel @Translate("In stock")</span> } else { <span class="small text-success">@Translate("In stock")</span> } } else { <span class="small text-danger">@Translate("Out of Stock")</span> } </span> </button> </li> } </ul> </div> <button type="button" onclick="swift.Cart.Update(event)" class="btn btn-primary @(buttonSize) js-add-to-cart-button" style="white-space: nowrap" @disableAddToCart title="@Translate("Add to cart")" id="AddToCartButton@(product.Id)_@Pageview.CurrentParagraph.ID"> @if (!Model.Item.GetBoolean("HideButtonText")) { <span class="text-nowrap d-flex align-items-center justify-content-center gap-2"> @addToCartLabel </span> } else { @addToCartLabel } </button> </div> } else { <div class="input-group input-primary-button-group flex-nowrap@(inputSize)"> @if (quantitySelector) { <input id="Quantity_@(product.Id)_@product.VariantId.Replace(".", "_")" name="Quantity" value="@DoubleToString(valueQty)" step="@DoubleToString(stepQty)" min="@DoubleToString(minQty)" max="@DoubleToString(maxQty)" class="form-control swift_quantity-field" style="min-width: 60px; max-width: 100px; z-index: 1" type="number" @disableAddToCart> } <button type="button" onclick="swift.Cart.Update(event)" class="btn btn-primary @(buttonSize) @flexFill js-add-to-cart-button" style="white-space: nowrap" @disableAddToCart title="@Translate("Add to cart")" id="AddToCartButton@(product.Id)_@Pageview.CurrentParagraph.ID"> @if (!Model.Item.GetBoolean("HideButtonText")) { <span class="text-nowrap d-flex align-items-center justify-content-center gap-2"> @addToCartLabel </span> } else { @addToCartLabel } </button> </div> } </div> </form> </div> } else if (whenVariantsExist == "modal") { string ButtonShape = Model.Item.GetRawValueString("VariantButtonShape", "square"); string buttonAspectRatio = Model.Item.GetRawValueString("VariantImageAspectRatio", "56%"); string buttonText = Translate("Select"); string variantId = !string.IsNullOrWhiteSpace(product.VariantId) ? product.VariantId : product.DefaultVariantId; string variantSelectorServicePageId = !string.IsNullOrEmpty(Model.Item.GetString("VariantSelectorServicePageId")) ? Model.Item.GetLink("VariantSelectorServicePageId").PageId.ToString() : ""; variantSelectorServicePageId = variantSelectorServicePageId != "" ? variantSelectorServicePageId : GetPageIdByNavigationTag("VariantSelectorService").ToString(); <div class="d-flex @horizontalAlign w-100 item_@Model.Item.SystemName.ToLower()"> @if (!anonymousUser && favoritesSelector) { @RenderPartial("Components/ToggleFavorite.cshtml", product) } <form action="/Default.aspx?ID=@variantSelectorServicePageId" data-response-target-element="DynamicModalContent" data-preloader="inline" style="z-index: 1" class="@fullWidth"> <input type="hidden" name="ProductID" value="@product.Id"> <input type="hidden" name="VariantID" value="@variantId"> <input type="hidden" name="QuantitySelector" value="@quantitySelector.ToString()"> <input type="hidden" name="HideInventory" value="@hideInventory.ToString()"> <input type="hidden" name="HideStockState" value="@hideStockState.ToString()"> <input type="hidden" name="ButtonLayout" value="@ButtonShape"> <input type="hidden" name="ButtonAspectRatio" value="@buttonAspectRatio"> <input type="hidden" name="VariantSelectorServicePage" value="@variantSelectorServicePageId"> <input type="hidden" name="ViewType" value="ModalContent"> @if (isLazyLoadingForProductInfoEnabled) { @* If lazy loading is enabled, bypass it because we're loading a modal window, so render everything as if it was server-side *@ <input type="hidden" name="getproductinfo" value="true"> } <button type="button" onclick="swift.PageUpdater.Update(event)" class="btn btn-primary@(buttonSize) @fullWidth" title="@Translate("Select")" data-bs-toggle="modal" data-bs-target="#DynamicModal" id="OpenVariantSelectorModal@(product.Id)_@Pageview.CurrentParagraph.ID">@buttonText</button> </form> </div> } } else if (Pageview.IsVisualEditorMode) { <div class="alert alert-dark m-0">@Translate("No products available")</div> }