Error executing template "Designs/FifthField/eCom/Product/productDetail.cshtml"
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.InvalidOperationException: Collection was modified; enumeration operation may not execute.
at System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource)
at System.Collections.Generic.Dictionary`2.Enumerator.MoveNext()
at Dynamicweb.Modules.Searching.Rules.Parser.UnescapeStrings(String s)
at Dynamicweb.Modules.Searching.Rules.Parser.GetValue(String value)
at Dynamicweb.Modules.Searching.Rules.Parser.ParseSimpleExpression(String expression)
at Dynamicweb.Modules.Searching.Rules.Parser.Parse(String input)
at Dynamicweb.ItemPublisher.FilterHelper.ToXml(String filter)
at Dynamicweb.ItemPublisher.Frontend.GetContentBySettings(String settings)
--- End of inner exception stack trace ---
at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at Dynamicweb.Extensibility.AddIns.AddInManager.InvokeFunction(Object instance, String functionName, Object[] arguments)
at Dynamicweb.Rendering.TemplateBase`1.RenderItemList(Object settings)
at CompiledRazorTemplates.Dynamic.RazorEngine_96c9d46f2396478b8e70f925afd59041.Execute() in f:\Domains\Sites\www.fifthfield.com\Files\Templates\Designs\FifthField\eCom\Product\productDetail.cshtml:line 627
at RazorEngine.Templating.TemplateBase.RazorEngine.Templating.ITemplate.Run(ExecuteContext context, TextWriter reader)
at RazorEngine.Templating.RazorEngineService.RunCompile(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
at RazorEngine.Templating.RazorEngineServiceExtensions.<>c__DisplayClass16_0.b__0(TextWriter writer)
at RazorEngine.Templating.RazorEngineServiceExtensions.WithWriter(Action`1 withWriter)
at Dynamicweb.Rendering.Template.RenderRazorTemplate()
1 @using System.IO;
2 @using System.Web;
3 @using System.Text;
4 @using System.Text.RegularExpressions;
5 @using Dynamicweb;
6
7 @functions {
8 public string replaceRegex(string str_stringToReplace){
9 if(str_stringToReplace != null) {
10 string str_replacedString = Regex.Replace(str_stringToReplace, "[^A-Za-z0-9@.$]", "");
11 return str_replacedString;
12 }
13 else {
14 return null;
15 }
16 }
17 public static string image(string imgSmall = "", string imgMedium = "", string imgLarge = "")
18 {
19 string str_image;
20
21 if (imgSmall != "")
22 {
23 str_image = imgSmall;
24 }
25 else if (imgMedium != "")
26 {
27 str_image = imgMedium;
28 }
29 else if (imgLarge != "")
30 {
31 str_image = imgLarge;
32 }
33 else
34 {
35 str_image = "";
36 }
37
38 return str_image;
39 }
40
41 public static string GetImage(string str_source,int num_width,int num_height = 0, string str_alternativeImage="", int num_crop=5)
42 {
43 var str_width = "";
44 var str_height = "";
45
46 if(num_width != 0){
47 str_width = "&Width="+num_width;
48 }
49 if(num_height != 0){
50 str_height = "&Height="+num_height;
51 }
52
53 string str_output = "/Admin/Public/GetImage.ashx?Image="+str_source+"&Format=png"+str_width + str_height+"&altFmImage_path="+str_alternativeImage+"&Crop="+num_crop;
54 return str_output.ToString();
55 }
56
57 public static FileInfo getFileInfo(dynamic obj_options){
58
59 string str_domain = "http://fozzieBear.com";
60
61 FileInfo info = new FileInfo(obj_options.str_file);
62 FileAttributes attributes = info.Attributes;
63
64 return info;
65
66 }
67
68 public static string getFileSize(dynamic obj_options){
69
70 string str_domain = "http://fozzieBear.com";
71 string str_output = "";
72
73 System.Net.WebClient client = new System.Net.WebClient();
74 client.OpenRead(str_domain+obj_options.str_file);
75 Int64 bytes_total = Convert.ToInt64(client.ResponseHeaders["Content-Length"]);
76
77 str_output = SizeSuffix(bytes_total).ToString();
78
79 return str_output;
80
81 }
82
83 static readonly string[] SizeSuffixes = { "bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB" };
84
85 static string SizeSuffix(Int64 value)
86 {
87 if (value < 0) { return "-" + SizeSuffix(-value); }
88
89 int i = 0;
90 decimal dValue = (decimal)value;
91 while (Math.Round(dValue / 1024) >= 1)
92 {
93 dValue /= 1024;
94 i++;
95 }
96
97 return string.Format("{0:n1} {1}", dValue, SizeSuffixes[i]);
98 }
99
100 public static string GetFriendlyUrl(int num_pageId)
101 {
102 var output = Dynamicweb.Frontend.SearchEngineFriendlyURLs.GetFriendlyUrl(num_pageId);
103 return output;
104 }
105
106 public static object GetParagraph(int num_paragraphId)
107 {
108 var paragraphService = new Dynamicweb.Content.ParagraphService();
109 var output = paragraphService.GetParagraph(num_paragraphId);
110 return output;
111 }
112
113 public static string StripHtml(string source)
114 {
115 return Regex.Replace(source, "<.*?>", string.Empty);
116 }
117
118 public static string GetRequest(string str_param = "")
119 {
120 string str_output = System.Web.HttpContext.Current.Request.QueryString[str_param];
121 return str_output;
122 }
123
124 public static string GetParam(string str_param = "")
125 {
126 string str_output = System.Web.HttpContext.Current.Request.Params[str_param];
127 return str_output;
128 }
129
130 public static void AddCookie(string str_name = "", string str_value = "")
131 {
132 var obj_cookie = new System.Web.HttpCookie(str_name);
133 obj_cookie.Value = str_value;
134 System.Web.HttpContext.Current.Response.Cookies.Add(obj_cookie);
135 }
136
137 public static void RemoveCookie(string str_name = "")
138 {
139 var obj_cookie = new System.Web.HttpCookie(str_name);
140 obj_cookie.Expires = DateTime.Now.AddDays(-1d);
141 System.Web.HttpContext.Current.Response.Cookies.Add(obj_cookie);
142 }
143
144 public static string GetCookie(string str_name = "")
145 {
146 string str_output = "";
147 if(System.Web.HttpContext.Current.Request.Cookies[str_name] != null ){
148 str_output = System.Web.HttpContext.Current.Request.Cookies[str_name].Value;
149 }
150 return str_output;
151 }
152
153 public static bool ExistCookie(string str_name = "")
154 {
155 bool bol_output = false;
156 if(System.Web.HttpContext.Current.Request.Cookies[str_name] != null ){
157 bol_output = true;
158 }
159 return bol_output;
160 }
161
162 public static void Redirect(string str_url = "")
163 {
164 System.Web.HttpContext.Current.Response.Redirect(Dynamicweb.Frontend.SearchEngineFriendlyURLs.GetFriendlyUrl(str_url));
165 }
166 /*example: Redirect("/Default.aspx?ID=12")*/
167
168 public static IHtmlString EncodeJS(string input)
169 {
170 StringBuilder builder = new StringBuilder();
171 // Open the double quotes
172 builder.Append("\"");
173 // Then add each character properly escaping them
174 foreach (char c in input)
175 {
176 switch (c)
177 {
178 //First check whether it's one of the defined escape sequences
179 case '\'': //single quote
180 builder.Append("\\\'");
181 break;
182 case '\"': //double quote
183 builder.Append("\\\"");
184 break;
185 case '\\': //backslash
186 builder.Append("\\\\");
187 break;
188 case '\0': //Unicode character 0
189 builder.Append("\\0");
190 break;
191 case '\a': //Alert (character 7)
192 builder.Append("\\a");
193 break;
194 case '\b': //Backspace (character 8)
195 builder.Append("\\b");
196 break;
197 case '\f': //Form feed (character 12)
198 builder.Append("\\f");
199 break;
200 case '\n': //New line (character 10)
201 builder.Append("\\n");
202 break;
203 case '\r': //Carriage return (character 13)
204 builder.Append("\\r");
205 break;
206 case '\t': //Horizontal tab (character 9)
207 builder.Append("\\t");
208 break;
209 case '\v': //Vertical quote (character 11)
210 builder.Append("\\v");
211 break;
212 default:
213 // If it's none of the defined escape sequences, convert the character to an int and check the code
214 int i = (int)c;
215 if (i >= 32 && i <= 127)
216 {
217 // if it's a displayable ASCII character, just write the character
218 builder.Append(c);
219 }
220 else
221 {
222 // otherwise write the Unicode escape sequence for the character with hex value
223 builder.AppendFormat("\\u{0:X04}", i);
224 }
225 break;
226 }
227 }
228 // Close the double quotes
229 builder.Append("\"");
230 // You have to return an IHtmlString otherwise an HTML escape will be performed e.g. < will be replaced by <
231 return new HtmlString(builder.ToString());
232 }
233 }
234
235
236 @using Dynamicweb.Rendering;
237 @using Dynamicweb.Ecommerce.Products;
238 @using System;
239 @model RazorTemplateModel<Template>
240 @using System.Data;
241 @using System.Web.Helpers;
242
243 @{
244 var item = Pageview.Area.Item;
245 var request = System.Web.HttpContext.Current.Request.Form;
246 var str_imagesFolder = "/Files/Files/FifthField/Products/";
247 var lst_VariantGroups = GetLoop("VariantGroups");
248
249 var num_out = 0;
250
251 string str_productID = GetString("Ecom:Product.ID");
252 string str_productNumber = GetString("Ecom:Product.Number");
253 string str_variantID = GetString("Ecom:Product.VariantID");
254 string str_variantDetail = "Default.aspx?ID=" + Dynamicweb.Frontend.PageView.Current().Page.ID.ToString() + "&ProductID=" + str_productID + "&VariantID=";
255 string str_cartPage = Dynamicweb.Frontend.PageView.Current().Page.ID.ToString();
256 string str_addToCart = Dynamicweb.Frontend.SearchEngineFriendlyURLs.GetFriendlyUrl("Default.aspx?ID=" + str_cartPage + "&ProductID=" + str_productID + "&VariantID=" + str_variantID + "&cartcmd=add");
257 string str_variantPrice = GetString("Ecom:Product.Price");
258 string str_stock = GetString("Ecom:Product.AvailableAmount");
259 string str_json = "{\"product\": {\"id\": \""+str_productID+"\",\"stock\" : \""+str_stock+"\",\"price\" : \""+str_variantPrice+"\",\"noVariantCombo\" : \""+String.Format("{0}", Translate("This combination does not exist"))+"\",\"variants\": []}}";
260 string str_variant = "{\"variantGroups\":[";
261 int num_TotalCount = GetLoop("VariantCombinations").Count;
262 int num_count = 1;
263
264 dynamic data = Json.Decode(str_json);
265 if(GetLoop("VariantCombinations").Count > 0)
266 {
267 foreach (LoopItem i in GetLoop("VariantCombinations")){
268 string str_variantHref = "/"+ i.GetValue("Ecom:VariantCombination.Link.Clean") + "?PID=" + Dynamicweb.Frontend.PageView.Current().CurrentParagraph.ID.ToString();
269 string str_articleNum = i.GetString("Ecom:Product.Number");
270 string str_price = i.GetString("Ecom:Product.Price");
271 string str_stockVariant = i.GetString("Ecom:Product.Stock");
272 string str_variantId = i.GetString("Ecom:VariantCombination.VariantID");
273 string str_dominantColor = "";
274 string str_variantName = HttpUtility.HtmlEncode(i.GetString("Ecom:Product.Name"));
275 string str_images = "";
276 string str_imagePattern = str_imagesFolder + str_articleNum;
277 string str_stockStateVariant = i.GetString("Ecom:Product:Stock.Text");
278 string str_stockStateVariantID = i.GetString("Ecom:Product:Stock.ID");
279 string str_stockColorVariant = "";
280 string str_stockSymbolVariant = "";
281
282 switch(str_stockStateVariantID){
283 case "STOCKSTATUS1":
284 str_stockColorVariant = "redColor";
285 str_stockSymbolVariant = "fa-times-circle";
286 break;
287 case "STOCKSTATUS2":
288 str_stockColorVariant = "yellowd7Color";
289 str_stockSymbolVariant = "fa-exclamation-circle";
290 break;
291 case "STOCKSTATUS3":
292 str_stockColorVariant = "greenb6Color";
293 str_stockSymbolVariant = "fa-check-circle";
294 break;
295 }
296
297 str_imagePattern += ".jpg";
298
299 string str_variantShortDescription = EncodeJS(i.GetString("Ecom:Product.ShortDescription").Replace(System.Environment.NewLine, "<br/>")).ToString();
300 string str_variantLargeDescription = EncodeJS(i.GetString("Ecom:Product.LongDescription").Replace(System.Environment.NewLine, "<br/>")).ToString();
301 string str_sep = ",";
302
303 if(num_TotalCount == num_count) {
304 str_sep = "";
305 }
306
307 if(GetString("Ecom:Product.ImageLarge.Clean") != ""){
308 str_images += GetString("Ecom:Product.ImageLarge.Clean") + ",";
309 }
310
311 if(GetString("Ecom:Product.ImageMedium.Clean") != ""){
312 str_images += GetString("Ecom:Product.ImageMedium.Clean") + ",";
313 }
314
315 if(GetString("Ecom:Product.ImageSmall.Clean") != ""){
316 str_images += GetString("Ecom:Product.ImageSmall.Clean") + ",";
317 }
318
319 str_images += str_imagePattern;
320
321 for(int num_i=1;num_i<6;num_i++)
322 {
323 string str_newImage = str_imagePattern.Replace(".jpg","_"+num_i+".jpg");
324 if(File.Exists(HttpContext.Current.Server.MapPath(str_newImage))){
325 str_images += "," + str_newImage;
326 }else{
327 break;
328 }
329 }
330 str_variant += "{ \"variantId\" : \""+str_variantId+"\", \"variantName\" : \""+str_variantName+"\", \"variantShortDescription\" : "+str_variantShortDescription+", \"variantLargeDescription\" : "+str_variantLargeDescription+", \"variantImages\" : \""+str_images+"\", \"price\" : \""+str_price+"\", \"stock\" : \""+str_stockVariant+"\", \"stockColor\" : \""+str_stockColorVariant+"\", \"stockSymbol\" : \""+str_stockSymbolVariant+"\", \"stockText\" : \""+str_stockStateVariant+"\" }"+str_sep;
331 num_count++;
332 }
333 }
334 str_variant += "]}";
335
336 dynamic variantAdd = Json.Decode(str_variant);
337 data.product.variants = variantAdd;
338
339
340 var str_productLanguageId = GetString("Ecom:Product.LanguageID");
341 var str_productRatingsID = GetGlobalValue("Global:Device.IsMobile") != "True" ? "id=\"reviewsContainer\"" : "";
342 var str_productAddToList = item["ProductsPage"]+"&CCAddToMyLists="+str_productID+"&CCAddToListVariantID="+str_variantID+"&CCAddToListLanguageID="+str_productLanguageId;
343 var str_productRemoveFromList = item["ProductsPage"]+"&CCRemoveFromMyLists="+str_productID+"&CCRemoveFromListVariantID="+str_variantID+"&CCRemoveFromListLanguageID="+str_productLanguageId;
344 var str_productIsFavorite = GetString("Ecom:Product.IsProductInFavoriteList").ToString();
345 var str_userLoged = "false";
346 var str_productName = GetString("Ecom:Product.Name");
347 var str_webDescription = GetString("Ecom:Product:Field.WebDescription");
348 var str_largeDescription = GetString("Ecom:Product.LongDescription");
349 var str_registerEmail = Dynamicweb.Frontend.SearchEngineFriendlyURLs.GetFriendlyUrl(item["SalesAlertRegisterPage"].ToString());
350 var str_stockState = GetString("Ecom:Product:Stock.Text");
351 var str_stockStateID = GetString("Ecom:Product:Stock.ID");
352 var str_stockColor = "";
353 var str_stockSymbol = "";
354 var str_metaTitle = GetString("Ecom:Product.MetaTitle");
355 var str_metaDescription = GetString("Ecom:Product.MetaDescription");
356 var str_metaKeywords = GetString("Ecom:Product.MetaKeywords");
357 var str_productFilter = "Product=\""+str_productID+"\"";
358 var bol_size = false;
359 var bol_color = false;
360 var bol_gender = false;
361 var bol_giftCertificate = false;
362
363 if(Dynamicweb.Security.UserManagement.User.IsExtranetUserLoggedIn()) {
364 str_userLoged = "true";
365 }
366 var str_imagePattern2 = str_imagesFolder + GetString("Ecom:Product.Number") + ".jpg";
367 var str_image = GetString("Ecom:Product.ImageLarge.Clean") != "" ? GetString("Ecom:Product.ImageLarge.Clean") : GetString("Ecom:Product.ImageMedium.Clean") != "" ? GetString("Ecom:Product.ImageMedium.Clean") : GetString("Ecom:Product.ImageSmall.Clean") != "" ? GetString("Ecom:Product.ImageSmall.Clean") : str_imagePattern2;
368
369 foreach (var var in lst_VariantGroups){
370 if(var.GetString("Ecom:VariantGroup.ID") == "size"){
371 bol_size = true;
372 }
373 if(var.GetString("Ecom:VariantGroup.ID") == "color"){
374 bol_color = true;
375 }
376 if(var.GetString("Ecom:VariantGroup.ID") == "VARGRP6"){
377 bol_gender = true;
378 }
379 if(var.GetString("Ecom:VariantGroup.ID") == "VARGRP5"){
380 bol_giftCertificate = true;
381 }
382 }
383
384 switch(str_stockStateID){
385 case "STOCKSTATUS1":
386 str_stockColor = "redColor";
387 str_stockSymbol = "fa-times-circle";
388 break;
389 case "STOCKSTATUS2":
390 str_stockColor = "yellowd7Color";
391 str_stockSymbol = "fa-exclamation-circle";
392 break;
393 case "STOCKSTATUS3":
394 str_stockColor = "greenb6Color";
395 str_stockSymbol = "fa-check-circle";
396 break;
397 }
398
399 @*
400 ********************* CURRENTLY NOT WORKING ************************
401 GetString("Ecom:Product.MetaTitle") returns empty.
402
403 *@
404
405 var obj_product = Dynamicweb.Ecommerce.Services.Products.GetProductById(GetString("Ecom:Product.ID"),GetString("Ecom:Product.VariantID"),true);
406 @* Metatags are empty so we use the product class to get them *@
407 str_metaTitle = obj_product.Meta.Title;
408 str_metaDescription = obj_product.Meta.Description;
409 str_metaKeywords = obj_product.Meta.Keywords;
410
411 if (!String.IsNullOrWhiteSpace(str_metaTitle))
412 {
413 Pageview.Meta.Title = str_metaTitle;
414 }
415
416 if (!String.IsNullOrWhiteSpace(str_metaDescription))
417 {
418 Pageview.Meta.AddTag("description", str_metaDescription);
419 }
420
421 if (!String.IsNullOrWhiteSpace(str_metaKeywords))
422 {
423 Pageview.Meta.AddTag("keywords", str_metaKeywords);
424 }
425 }
426
427 @if(request["success"] != null && request["sentEmail"] != null){
428 var str_confirmList = "SELECT AccessUser.AccessUserID as userID, EcomCustomerFavoriteLists.id as listID, EcomCustomerFavoriteLists.IsDefault, EcomCustomerFavoriteProducts.ProductID FROM AccessUser LEFT JOIN EcomCustomerFavoriteLists ON AccessUser.AccessUserID=EcomCustomerFavoriteLists.AccessUserID LEFT JOIN EcomCustomerFavoriteProducts ON EcomCustomerFavoriteLists.id=EcomCustomerFavoriteProducts.FavoriteLIstID WHERE AccessUserEmail='"+request["sentEmail"]+"'";
429 var str_listID = "";
430 var obj_dataRow = Dynamicweb.Data.Database.CreateDataSet(str_confirmList).Tables[0].Rows;
431 var str_userID = obj_dataRow[0]["userID"].ToString();
432 var lst_products = new List<string>();
433 var col_listID = new DataColumn();
434
435 foreach(DataRow row in obj_dataRow){
436 if(!DBNull.Value.Equals(row["IsDefault"]) && row["IsDefault"].ToString() == "True"){
437 lst_products.Add(row["ProductID"].ToString());
438 if(!DBNull.Value.Equals(row["listID"])){
439 str_listID = row["listID"].ToString();
440 }
441 }
442 }
443
444 if(string.IsNullOrEmpty(str_listID)){ //No list exists for this user
445 var str_insertList = "INSERT INTO EcomCustomerFavoriteLists (AccessUserID, Name, IsPublished, Type, IsDefault, Description, PublishedId) VALUES (" + str_userID + ", '', 'False', '', 'True', '', '#" + str_userID + "')";
446 Dynamicweb.Data.Database.ExecuteNonQuery(str_insertList);
447
448 var str_getListID = "SELECT ID FROM EcomCustomerFavoriteLists WHERE AccessUserID=" + str_userID + " AND IsDefault='True'";
449 str_listID = Dynamicweb.Data.Database.CreateDataSet(str_getListID).Tables[0].Rows[0]["ID"].ToString();
450
451 var str_insertProduct = "INSERT INTO EcomCustomerFavoriteProducts (FavoriteListID, ProductID, ProductLanguageID, ProductVariantID, ProductReferenceUrl, Quantity) VALUES ('" + str_listID + "', '" + str_productID + "', '" + str_productLanguageId + "', '" + str_variantID + "', '/" + item["ProductsPage"].ToString() + "', 1 )";
452 Dynamicweb.Data.Database.ExecuteNonQuery(str_insertProduct);
453
454 @SnippetStart("jsOnLoad")
455 @:alert("@Translate("Successfuly added Product.")");
456 @SnippetEnd("jsOnLoad")
457 }else{
458 if(lst_products.Contains(str_productID)){
459 @SnippetStart("jsOnLoad")
460 @:alert("@Translate("This product already Exists in this list.")");
461 @SnippetEnd("jsOnLoad")
462 }else{
463 var str_insertProduct = "INSERT INTO EcomCustomerFavoriteProducts (FavoriteListID, ProductID, ProductLanguageID, ProductVariantID, ProductReferenceUrl, Quantity) VALUES ('" + str_listID + "', '" + str_productID + "', '" + str_productLanguageId + "', '" + str_variantID + "', '/" + item["ProductsPage"].ToString() + "', 1 )";
464 Dynamicweb.Data.Database.ExecuteNonQuery(str_insertProduct);
465
466 @SnippetStart("jsOnLoad")
467 @:alert("@Translate("Successfuly added Product.")");
468 @SnippetEnd("jsOnLoad")
469 }
470 }
471 }
472 <h2 class="detailTitle col-xs-12">
473 <span>@str_productName</span>
474 </h2>
475 <article id="productDescription" class="col-xs-12 col-sm-8">
476 <div id="productInfo">
477
478 <div class="priceContainer">
479 <form class="hide" method="post" action="/Default.aspx?ID=@GetGlobalValue("Global:Page.ID")">
480 <input type="hidden" name="Comment.Command" id="Comment.Command" value="create">
481 <input type="hidden" name="Comment.ItemType" value="ecomProduct">
482 <input type="hidden" name="Comment.ItemID" value="@str_productID">
483 <input type="hidden" name="Comment.LangID" value="@str_productLanguageId">
484 <input type="hidden" class="ratingInput" name="Comment.Rating" value="">
485 </form>
486
487 <span itemprop="price">@GetString("Ecom:Product.Price")</span>
488 <span> | </span>
489
490 @if(GetDouble("Ecom:Product.Rating") == 0){
491 <span id="notRatedYet">@getProductStars(GetDouble("Ecom:Product.Rating"))@Translate("No reviews yet.") <a href="@item["ReviewsForm"]&productId=@str_productID" class="pull-right">@Translate("Be the first!")</a></span>
492 }else{
493 @getProductStars(GetDouble("Ecom:Product.Rating"))
494 }
495 </div>
496
497 @if(str_webDescription != "" || str_largeDescription != ""){
498 <div id="description">
499 @if(str_webDescription != ""){
500 @str_webDescription <br/><br/>
501 }else{
502 @str_largeDescription <br/><br/>
503 }
504 </div>
505 }
506 </div>
507
508 <div id="productImagesContainer" class="col-xs-12 noPadding">
509 <div id="prodLargeImage" class="col-xs-12 noPaddingRight">
510 @if(!string.IsNullOrEmpty(str_image)){
511 <figure>
512 <img class="img-responsive" itemprop="image" alt="@str_productName" title="@str_productName" src="/admin/public/getimage.ashx?Image=@str_image&Format=jpg&AlternativeImage=files/templates/designs/FifthField/images/alternativeImage.jpg&width=800&Compression=80&Crop=5" />
513 </figure>
514 }else{
515 <figure>
516 <img itemprop="image" alt="@str_productName" title="@str_productName" src="/admin/public/getimage.ashx?Image=@str_image&Format=jpg&AlternativeImage=files/templates/designs/FifthField/images/alternativeImage.jpg&width=800&Compression=80&Crop=5" />
517 </figure>
518 }
519 </div>
520 </div>
521
522 </article>
523
524 <div id="asideHolder" class="col-xs-12 col-sm-4 col-lg-3 col-lg-offset-1 text-center">
525 <a class="btnBlueYellow reviewProduct" href="@item["ReviewsForm"]&productId=@str_productID">@Translate("Review This Product")</a>
526 <aside id="productVariants" class="text-left">
527 <form data-defaultVariant="@GetString("Ecom:Product.DefaultVariantComboName")" id="variantsForm" name="addToCart" action="/Default.aspx" method="post">
528 <input type="hidden" name="id" value='@item["Cart"]' />
529 <input type="hidden" name="productid" value='@str_productID' />
530 <input data-wrong="@Translate("Combination nonexistent")" type="hidden" name="variantid" value='@GetString("Ecom:Product.VariantID")' />
531 <input type="hidden" name="CartCmd" value='Add' />
532
533 @if(lst_VariantGroups.Count() > 0) {
534 if(bol_size){
535 <div class="size">
536 <span>@Translate("Select Size"):</span>
537 @foreach (LoopItem s in lst_VariantGroups){
538 var str_sizeSelect = "<fieldset id='sizeSelect' class='Select'>";
539 var str_selected = "";
540 @*Size*@
541 if(s.GetString("Ecom:VariantGroup.ID") == "size"){
542 foreach(LoopItem a in s.GetLoop("VariantAvailableOptions")) {
543 str_selected = a.GetString("Ecom:VariantOption.Selected") != "False" ? "selected" : "";
544 str_sizeSelect += "<label class='variant "+ str_selected+"' for='"+ a.GetString("Ecom:VariantOption.ID") +"'><input " + str_selected + " type='radio' id='"+ a.GetString("Ecom:VariantOption.ID") +"' name='size' value='"+ a.GetString("Ecom:VariantOption.ID") +"'>"+ a.GetString("Ecom:VariantOption.Name") + "</label>";
545 }
546 str_sizeSelect += "</fieldset>";
547 @str_sizeSelect
548 }
549 }
550
551 <a target="_blank" href="@item["SizeChart"]" title="@Translate("View size chart")">@Translate("View size chart")</a>
552 </div>
553 }
554 if(bol_gender){
555 <div class="gender">
556 <span>@Translate("Select Gender"):</span>
557 @foreach (LoopItem c in lst_VariantGroups){
558 var str_genderSelect = "<fieldset class='Select' id='genderSelect'><select name='gender'>";
559 var str_selected = "";
560 @*Gender*@
561 if(c.GetString("Ecom:VariantGroup.ID") == "VARGRP6"){
562 foreach(LoopItem a in c.GetLoop("VariantAvailableOptions")) {
563 str_selected = a.GetBoolean("Ecom:VariantOption.Selected") ? "selected" : "";
564 str_genderSelect += "<option data-default='"+str_selected+ "' " + str_selected + " id='"+ a.GetString("Ecom:VariantOption.ID") +"' value='"+ a.GetString("Ecom:VariantOption.ID") +"'>" + a.GetString("Ecom:VariantOption.Name") + "</option>";
565 }
566 str_genderSelect += "</select></fieldset>";
567 @str_genderSelect
568 }
569 }
570 </div>
571 }
572 if(bol_giftCertificate){
573 <div class="giftCertificate">
574 <span>@Translate("Select Value"):</span>
575 @foreach (LoopItem c in lst_VariantGroups){
576 var str_giftCertificateSelect = "<fieldset class='Select' id='giftCertificateSelect'><select name='giftCertificate'>";
577 var str_selected = "";
578 @*GiftCertificate*@
579 if(c.GetString("Ecom:VariantGroup.ID") == "VARGRP5"){
580 foreach(LoopItem a in c.GetLoop("VariantAvailableOptions")) {
581 str_selected = a.GetBoolean("Ecom:VariantOption.Selected") ? "selected" : "";
582 str_giftCertificateSelect += "<option data-default='"+str_selected+ "' " + str_selected + " id='"+ a.GetString("Ecom:VariantOption.ID") +"' value='"+ a.GetString("Ecom:VariantOption.ID") +"'>"+ GetString("Ecom:Product.Price.Currency.Symbol") + a.GetString("Ecom:VariantOption.Name") +"</option>";
583 }
584 str_giftCertificateSelect += "</select></fieldset>";
585 @str_giftCertificateSelect
586 }
587 }
588 </div>
589 }
590 if(bol_color){
591 <div class="colour">
592 <span>@Translate("Select colour"):</span>
593 @foreach (LoopItem c in lst_VariantGroups){
594 var str_colorSelect = "<fieldset class='Select' id='colorSelect'><select name='color'>";
595 var str_selected = "";
596 @*Color*@
597 if(c.GetString("Ecom:VariantGroup.ID") == "color"){
598 foreach(LoopItem a in c.GetLoop("VariantAvailableOptions")) {
599 str_selected = a.GetBoolean("Ecom:VariantOption.Selected") ? "selected" : "";
600 str_colorSelect += "<option data-default='"+str_selected+ "' " + str_selected + " id='"+ a.GetString("Ecom:VariantOption.ID") +"' value='"+ a.GetString("Ecom:VariantOption.ID") +"'>"+ a.GetString("Ecom:VariantOption.Name") +"</option>";
601 }
602 str_colorSelect += "</select></fieldset>";
603 @str_colorSelect
604 }
605 }
606 </div>
607 }
608 }
609 <div class="quantity">
610 <span>@Translate("Quantity"): </span>
611 <input type="text" name="Quantity" value='1' />
612 <span class="stockState"><i class="@str_stockColor fa @str_stockSymbol"></i>@str_stockState</span>
613 </div>
614 <input type="submit" value="@Translate("Add to Cart")">
615 </form>
616 <span class="wantToKnow">@Translate("Want to know when this product goes on sale?")</span>
617 <div class="signUpSaleAlert">
618 <i class="fa fa-check hide"></i>
619 <a data-login="@str_userLoged" data-favorites="@str_productIsFavorite" data-remove="@str_productRemoveFromList" href="@str_productAddToList" data-notLogged="@str_registerEmail" data-currentPage="@Dynamicweb.Frontend.SearchEngineFriendlyURLs.GetFriendlyUrl(GetString("Ecom:Product.Link.Clean"))">@Translate("Sign up for a SaleAlert!")</a>
620 </div>
621 </aside>
622 </div>
623 <div @str_productRatingsID class="col-xs-12">
624 <div id="reviewsContainer" class="col-xs-12 noPadding">
625 <p id="reviewsTitle" class="h2">@Translate("Reviews")</p>
626
627 @RenderItemList(new {
628 ItemType = "Reviews",
629 ListSourceType = "NamedList",
630 NamedListPageID = Convert.ToInt32(item["Reviews"].ToString()),
631 TargetNamedList = "Reviews",
632 ItemFieldsList = "*",
633 ListTemplate = "ItemPublisher/List/productReviewsList.cshtml",
634 ListPageSize = 999,
635 ListOrderBy = "Product",
636 Filter = @str_productFilter
637 })
638
639 </div>
640 </div>
641
642 @SnippetStart("jsOnLoad")
643 onLoadProductDetail('@Json.Encode(data)', '@Translate("You must be logged in")', '@Translate("No stock")');
644 @SnippetEnd("jsOnLoad")
645
646 @helper getProductStars(double num_productRating){
647 var str_starClass = "";
648 var str_halfStar = "";
649
650 <ul class="rating noClick">
651 @for(var s=5;s>0;s--){
652 if(s == Math.Ceiling(num_productRating)){
653 str_starClass = "class='star'";
654 str_halfStar = !(num_productRating - Math.Round(num_productRating) == 0) ? "fa-star-half-o" : "fa-star" ;
655 }else{
656 str_starClass = "";
657 str_halfStar = "fa-star";
658 }
659
660 <li data-star="@s" @str_starClass><i class="fa @str_halfStar"></i></li>
661 }
662 </ul>
663 }