Lokring Appliance Lrsm Cutting Wheel - L13001304 (2024)

Zoom

Lokring Appliance Lrsm Cutting Wheel - L13001304 (1)

Lokring Appliance Lrsm Cutting Wheel - L13001304 (2)

Lokring Appliance Lrsm Cutting Wheel - L13001304 (3)

Secured Payment

Lokring Appliance Lrsm Cutting Wheel - L13001304 (4)

premium parts

${filteredList[i].app_title.toUpperCase()}

Yes, this part fits in ( ${skucurrent} ) model ( ${filteredList[i].app_title.toUpperCase()} )

View model

${filteredList[i].app_handle}

`; console.log("ok") listContainer.innerHTML = appendT_T; } listContainer.innerHTML = appendT_T; } $('.msg_incorrect').hide(); } // code updated Apr 11 2024 end $(document).on('click', '.btn-cross', function() { // $('.btn-cross').click(function(){ console.log('crossindex') $('.modellistpara').css('display','none'); $('.msg_incorrect').hide(); setTimeout(function() { $(".suggestion-list").removeClass("dynamic_position"); }, 1000); $("#search").val(""); $('.suggestion-list').addClass('hidden'); }); $('.cross_NotFit').click(function(){ console.log('crossindex') $('.msg_incorrect').css('display','none !important'); $("#search").val(""); $('.suggestion-list').addClass('hidden'); }); generateAppList(event); $(document).on('click', '.suggestion-list div', function() { var index = $(this).index(); // console.log("index>>>",index) var parent = $(this).parent(); // console.log("parent>>>>>",parent) parent.children('div').each(function() { if($(this).index() != index){ $(this).hide(); $(".suggestion-list").addClass("dynamic_position"); $('.modeltext').show(); $('.main_text_Div').show(); $('.divmlBtn').show(); $('.divconatin').show(); $('.linkclass').show(); $('.mainsku').show(); $('.twodiv').show(); $('.onediv').css('display', 'flex'); $('.onediv').show(); $('.twodiv').hide(); $('p_nt_found').hide(); $('.msg_incorrect').hide(); } }); }); function hideAppList() { // listContainer.classList.add("hidden"); } $(document).mouseup(function(e) { var container = $(".suggestion-list"); // If the target of the click isn't the container nor a descendant of the container if (!container.is(e.target) && container.has(e.target).length === 0) { // console.log("ifmouseup"); container.addClass("hidden"); // Use jQuery's addClass() method $('.msg_incorrect').hide(); } });

} //end condition }); } // Call the function to display product details displayProductDetails(productDetailsData,event); } getsingleProductDetails();}else{ console.log("product input field") setTimeout(() => { console.log("modelEncompassData product input field",modelEncompassData) var modifysku = modelEncompassData.join(' OR '); var chunkedArrays22 = [modifysku] console.log("chunkedArrays22",chunkedArrays22) console.log("chunkedArrays22>>>",chunkedArrays22) $("#search").on('keyup', function (e) { if (e.key === 'Enter' || e.keyCode === 13) { // Do something console.log("enter press") e.preventDefault(); return false; }}); var searchInput = document.querySelector("#search"); searchInput.addEventListener('keyup', function(event){ // if (event.key === 'Enter' || event.keyCode === 13) { // event.preventDefault(); // return; // } setTimeout(() => { console.log("eveve",event.target.value); var matched_data = filterArray(event.target.value); console.log("matched_data",matched_data) if(matched_data.length > 0){ getsingleProductDetails(matched_data,event); }else{ var listContainer = document.querySelector(".suggestion-list"); let paragraph = document.createElement("p"); paragraph.classList.add("p_nt_found"); paragraph.innerText = "No Model found"; listContainer.innerHTML = "

No Model found

"; listContainer.classList.remove("hidden"); } }, 2000); }); function filterArray(searchValue) { //var searchValue = searchInput.value.toLowerCase().trim(); // Get the search value and convert to lowercase console.log("searchValue",searchValue,"chunkedArrays22[0]:",chunkedArrays22[0]) var filteredArray = chunkedArrays22[0].split(" OR ").filter(function(item) { return item.toLowerCase().indexOf(searchValue.toLowerCase()) > -1 || item.toUpperCase().indexOf(searchValue.toUpperCase()) > -1; }); var filteredString = filteredArray.join(" OR ").replace(/,/g, " OR "); console.log("Filtered String:", filteredString); return filteredString; } // ram comment // searchInput.addEventListener('input', filterArray); // Replace 'YOUR_STOREFRONT_ACCESS_TOKEN' with your actual Storefront API token var storefrontAccessToken21 = '275e2c2c71750cf915068494bbd5c366'; async function getsingleProductDetails(result,event) { var productDetailsData = []; const response_single = await fetch("https://bertazzoniparts.myshopify.com/api/2023-04/graphql.json", { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Shopify-Storefront-Access-Token': storefrontAccessToken21, }, body: JSON.stringify({ query: `{ products(query: "${result}", first: 250) { edges { node { metafield(namespace: "custom", key: "ari_id") { id value } } } nodes { id title description handle variants(first: 250) { nodes { sku priceV2 { amount currencyCode } } } images(first: 250) { nodes { originalSrc } } } } } `, }), }); const result_single = await response_single.json(); if (result_single.data.products) { productDetailsData = []; productDetailsData.push(result_single.data.products); } console.log("productDetailsData",productDetailsData) function displayProductDetails(productDetailsData,event) { productDetailsData[0].nodes.forEach(product => { const { title, description, variants, handle, images } = product; const sku = variants.nodes[0].sku; // if(dataArray21.includes(sku)){ const amount = variants.nodes[0].priceV2.amount; let imageD; if (images.nodes.length > 0) { imageD = images.nodes[0].originalSrc; } else { imageD = 'https://encompass-11307.kxcdn.com/imageDisplay?mfgCode=BRT&type=b&size=s'; } $("#apps").append($('

', { class: 'app', // Ensure the class name is a string }).append("

" + sku + "

" + handle + "

"));

var all_apps = document.querySelectorAll(".app"); var search = document.querySelector("#search"); var listContainer = document.querySelector(".suggestion-list"); var app_list = []; for (let i = 0; i < all_apps.length; i++) { var app_title = all_apps[i].querySelector("p").innerText.toLowerCase(); var app_handle = all_apps[i].querySelector(".handle_sku").innerText; var obj = {}; obj.app_title = app_title; obj.app_handle = app_handle; // Check if a similar object already exists in app_list let exists = app_list.some(item => item.app_title === obj.app_title && item.app_handle === obj.app_handle ); if (!exists) { console.log("if Data") app_list.push(obj); } } var timerss = 2000; search.addEventListener("blur", hideAppList); function generateAppList(event) { console.log("run") var fragment = document.createDocumentFragment(); var userInput = event.target.value.toLowerCase(); if (userInput.length === 0) { listContainer.innerHTML = ""; console.log(listContainer.innerHTML) listContainer.classList.add("hidden"); $('.msg_incorrect').hide(); return; } listContainer.classList.remove("hidden"); var filteredList = app_list.filter(function (arr) { return ( arr.app_title.includes(userInput) || arr.app_handle.includes(userInput) ); }); if (filteredList.length === 0) { let paragraph = document.createElement("p"); paragraph.classList.add("p_nt_found"); paragraph.innerText = "No Model found"; listContainer.innerHTML = "

No parts found

"; $('.search-label').click(function(){ console.log("search inside the length 0 ") $('.msg_incorrect').show(); }); } else { var appendT_T = ``; for (let i = 0; i < filteredList.length; i++) { var skucurrent = "L13001304"; // appendT_T = ``; appendT_T += `

Does this part fit my model?

${skucurrent}

Yes, this part fits in ${filteredList[i].app_title.toUpperCase()} model

View model

${filteredList[i].app_handle}

`; console.log("ok") listContainer.innerHTML = appendT_T; } listContainer.innerHTML = appendT_T; } $('.msg_incorrect').hide(); } // code updated Apr 11 2024 end $(document).on('click', '.btn-cross', function() { // $('.btn-cross').click(function(){ console.log('crossindex') $('.modellistpara').css('display','none'); $('.msg_incorrect').hide(); setTimeout(function() { $(".suggestion-list").removeClass("dynamic_position"); }, 1000); $("#search").val(""); $('.suggestion-list').addClass('hidden'); }); $('.cross_NotFit').click(function(){ console.log('crossindex') $('.msg_incorrect').css('display','none !important'); $("#search").val(""); $('.suggestion-list').addClass('hidden'); }); generateAppList(event); $(document).on('click', '.suggestion-list div', function() { var index = $(this).index(); // console.log("index>>>",index) var parent = $(this).parent(); // console.log("parent>>>>>",parent) parent.children('div').each(function() { if($(this).index() != index){ $(this).hide(); $(".suggestion-list").addClass("dynamic_position"); $('.modeltext').show(); $('.main_text_Div').show(); $('.divmlBtn').show(); $('.divconatin').show(); $('.linkclass').show(); $('.mainsku').show(); $('.twodiv').show(); $('.onediv').css('display', 'flex'); $('.onediv').show(); $('.twodiv').hide(); $('p_nt_found').hide(); $('.msg_incorrect').hide(); } }); }); function hideAppList() { // listContainer.classList.add("hidden"); } $(document).mouseup(function(e) { var container = $(".suggestion-list"); // If the target of the click isn't the container nor a descendant of the container if (!container.is(e.target) && container.has(e.target).length === 0) { // console.log("ifmouseup"); container.addClass("hidden"); // Use jQuery's addClass() method $('.msg_incorrect').hide(); } });

// } //end condition }); } // Call the function to display product details displayProductDetails(productDetailsData,event); } getsingleProductDetails(); }, "2000"); } var searchInputAtag = document.querySelector("#search"); $('.search-label').click(function(e) { e.preventDefault(); console.log("search-labelsearch-labelsearch-label>>>>>") var searchValue = $('#search').val().toLowerCase().trim(); // Get the search value from the input field console.log("Search Value>>>>>:", searchValue); if(searchValue < 1){ alert("Must Enter Any Value To See The Results"); return; } $(".text_searchValue").html(searchValue); // $('.mainsku').hide(); // Check each element with class 'paraclass' $('.paraclass').each(function() { console.log("paraclass") var text = $(this).text().toLowerCase(); console.log("text",text) if (text === searchValue) { console.log("text included ") $('.suggestion-list').removeClass('hidden'); $(".suggestion-list").addClass("dynamic_position"); $('.modeltext').show(); $('.main_text_Div').show(); $('.divmlBtn').show(); $('.divconatin').show(); $('.linkclass').show(); $('.mainsku').show(); $('.twodiv').show(); $('.onediv').css('display', 'flex'); $('.onediv').show(); $('.twodiv').hide(); $('p_nt_found').hide(); $('.msg_incorrect').hide(); }else{ $('.msg_incorrect').show(); $('.suggestion-list').addClass('hidden'); } }); $(".msg_incorrect").addClass("dynamic_position"); });

Hurry, only 0 parts left in stock

Have a question?

'); setTimeout(function(){ $(document).find('.shopify-payment-button__button').hide(); } ,3000) return; } else{ //$(document).find(".notify_button").css("display","block"); } if(response.noPurchaseReason != '' && response.partEta != 'no longer available' || response.noPurchaseReason != '' && response.partEta != 'use substitute part' ) { var nopur = response.substitutePartLink; let use_sub_prt = response.noPurchaseReason; let check_strings = use_sub_prt.includes("use substitute part"); if(check_strings){ let partNums = use_sub_prt.split(" "); let chk_partNums = partNums[5]; let partNumssss = chk_partNums.split("<"); partNumssss = partNumssss[0] let links = `Use Substitute Part ${partNumssss}`; $(".more-info").append(`

This part is no longer available, but the part listed below is comparable and can be used instead

View Substitute Part # ${partNumssss}

View Part`); $(".product-iteam").show(); // jQuery('#noPurchaseReason').html(links); }else{ $('#noPurchaseReason').text(response.noPurchaseReason); $('.noPurchaseReason').css('display', 'block'); $('p#noPurchaseReason').css('display', 'block'); } $('.pro-details').css('display', 'none'); $(document).find('.group-quantity-button').css('display','none') $('#AddToCart').attr("disabled", "true"); $('#AddToCart').addClass("disabled"); $('#AddToCart').hide(); jQuery('#AddToCart').attr("disabled", "true"); jQuery('#AddToCart').addClass("disabled"); jQuery('#AddToCart').hide(); setTimeout(function(){ $(document).find('.shopify-payment-button__button').hide(); } ,3000) // jQuery(".search-model").hide(); if(nopur){ //comment Call GraphQl api for getting the newPartnumber's Handle var link = `Use Substitute Part ${nopur}`; jQuery('#noPurchaseReason').html(link); } } if(response.noPurchaseReason == 'no longer available - 004' || response.noPurchaseReason == 'Invalid Price - 002' || response.noPurchaseReason == 'not available for purchase - 015') { $('#noPurchaseReason').text(response.noPurchaseReason); $('.pro-details').css('display', 'none'); $('.noPurchaseReason').css('display', 'block'); $('p#noPurchaseReason').css('display', 'block'); $('#AddToCart').attr("disabled", "true"); $('#AddToCart').addClass("disabled"); $('#AddToCart').hide(); jQuery('.product-form--atc-button').attr("disabled", "true"); jQuery('.product-form--atc-button').addClass("disabled"); jQuery('#AddToCart').attr("disabled", "true"); jQuery('#AddToCart').addClass("disabled"); jQuery('#AddToCart').hide(); setTimeout(function(){ $(document).find('.shopify-payment-button__button').hide(); } ,3000) // jQuery(".search-model").hide(); jQuery('.productAvailability1').html(" " + response.noPurchaseReason +""); //return; } if(response.newPartNumber) { var newPartNumber = response.newPartNumber; newPartNumber = newPartNumber.replace("/", "-"); var originalPart = response.originalPart; if(newPartNumber != originalPart) { //comment Call GraphQl api for getting the newPartnumber's Handle console.log(newPartNumber,"newPartNumber") // Replace 'YOUR_STOREFRONT_ACCESS_TOKEN' with your actual Storefront API token const storefrontAccessToken = '275e2c2c71750cf915068494bbd5c366'; async function getHandle() { var proHandleDet = []; const resData = await fetch("https://bertazzoniparts.myshopify.com/api/2023-04/graphql.json", { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Shopify-Storefront-Access-Token': storefrontAccessToken, }, body: JSON.stringify({ query: `{ products(query: "${newPartNumber}", first: 10) { nodes { handle } } } `, }), }); console.log("resData",resData) const handleResult = await resData.json(); console.log("handleResult",handleResult) if (handleResult.data.products) { proHandleDet.push(handleResult.data.products); } // } console.log(proHandleDet,"proHandleDet"); proHandleDet[0].nodes.forEach(product => { const { title, description, variants, handle, images } = product; console.log("handle1212",handle) // $(".subsitutemsg").css("display","block"); $(".cms-product-meta.clearfix").css("display","none"); $('.group-button-buyitnow ').css("display","none"); $(".more-info").append(`

This part is no longer available, but the part listed below is comparable and can be used instead

View Substitute Part # ${newPartNumber}

View Part`); $(".product-iteam").show(); //$(".subsitutemsg").append('

This part is no longer available, but the part(s) listed below is comparable and can be used instead. !
View Substitute part : '+newPartNumber+'

View Part

'); $('.productAvailability1').html(" Out of Stock "); console.log("handle",handle) }); } getHandle(); setTimeout(function(){ setTimeout(function(){ $(document).find('.shopify-payment-button__button').hide(); } ,3000) } ,3000) return; } } if(response.quantity != 0 && response.quantity != -999) { var quantity = response.quantity; jQuery('#AddToCart').removeAttr("disabled"); jQuery('#AddToCart').removeClass("disabled"); // jQuery('.btnAddToCart span').text("Add to Cart"); jQuery('.productAvailability1').addClass("instock productAvailability"); jQuery('.productAvailability1').removeClass("outstock"); jQuery('.productAvailability1').removeClass("pro_outofstock"); if(product_id != '') {//5501745430684 jQuery('.productAvailability1').html(" In Stock - order placed today by 3pm EST will ship today

Fast, Convenient Delivery!

We know you need your parts shipped and delivered FAST!

Any IN STOCK order placed today by 3pm will ship TODAY or you will receive 20% off your next order.

We strive to provide you with the most accurate ETAs and updates for Out of Stock items.

"); } else { jQuery('.productAvailability1').html("In Stock"); } } else { var quantity = response.quantity; var partEta = response.partEta; if(partEta == 'no longer available') { jQuery('.product-form--atc-button').attr("disabled", "true"); jQuery('.product-form--atc-button').addClass("disabled"); setTimeout(function(){ $(document).find('.shopify-payment-button__button').hide(); } ,3000) jQuery('.productAvailability1').addClass("outstock productAvailability"); jQuery('.productAvailability1').addClass("pro_outofstock productAvailability"); jQuery('.productAvailability1').removeClass("instock"); jQuery('.productAvailability1').html(" Out of stock " + response.partEta +""); }else if(partEta == 'Today' && newPartNumber == ''){ jQuery('.productAvailability1').html(" In Stock "+partEta+""); jQuery('#AddToCart').removeAttr("disabled"); jQuery('#AddToCart').removeClass("disabled"); jQuery('.btnAddToCart span').text("Add to Cart"); jQuery('#AddToCart').show(); jQuery('.productAvailability1').removeClass("outstock productAvailability"); jQuery('.productAvailability1').removeClass("pro_outofstock productAvailability"); jQuery('.productAvailability1').addClass("instock"); //jQuery('.notify_button').html(''); } else if(partEta == 'No ETA - Factory Backorder'){ jQuery('.productAvailability1').html(" "+partEta+""); jQuery('#AddToCart').removeAttr("disabled"); jQuery('#AddToCart').removeClass("disabled"); //jQuery('.btnAddToCart span').text("Add to Cart"); jQuery('.productAvailability1').removeClass("outstock productAvailability"); jQuery('.productAvailability1').removeClass("pro_outofstock productAvailability"); jQuery('.productAvailability1').addClass("instock"); //jQuery('.notify_button').html(''); }else if(partEta == 'No ETA - Delivery Not Available'){ jQuery('.productAvailability1').html(" "+partEta+ ""); jQuery('#AddToCart').removeAttr("disabled"); jQuery('#AddToCart').removeClass("disabled"); jQuery('.btnAddToCart span').text("Add to Cart"); jQuery('.productAvailability1').removeClass("outstock productAvailability"); jQuery('.productAvailability1').removeClass("pro_outofstock productAvailability"); jQuery('.productAvailability1').addClass("instock"); //jQuery('.notify_button').html(''); } else { if( response.noPurchaseReason != "not available for purchase - 015") { // console.log("else if ETA" ,response.noPurchaseReason) jQuery('.product-form--atc-button').removeAttr("disabled"); jQuery('.product-form--atc-button').removeClass("disabled"); //jQuery('#AddToCartText').text("Add to Cart"); //jQuery('.btnAddToCart span').text("Add to Cart"); // jQuery('.notify_button').html(''); jQuery('.productAvailability1').addClass("outstock productAvailability"); jQuery('.productAvailability1').addClass("pro_outofstock productAvailability"); jQuery('.productAvailability1').removeClass("instock"); jQuery('#AddToCart').show(); }else{ // console.log("else if else 3 ETA" ,response.noPurchaseReason) } var newpartseta = partEta.includes('or'); var ETA = ''; if(newpartseta){ ETA = partEta.split('or'); ETA = ETA[0]; }else{ ETA = partEta; } //console.log(ETA); jQuery('.productAvailability1').html(" Expected to be available on "+ETA); } } if(response.price != "") { var price = response.price; jQuery('#js-product-price').text(price); } if(response.old_price != "") { jQuery('.product-old-price').css('display', 'block'); jQuery('.save-price').append(response.save_price); jQuery('.old-amount').append(response.old_price); } if(response.core_price != "0.00") { jQuery('.part_core_price').css('display', 'block'); jQuery("li.part_price").find('span').text(response.part_price); jQuery("li.core_price").find('span').text(response.core_price); } if(response.shippingInfo != "") { jQuery('.shipping_info').html(response.shippingInfo); } if(response.equivalentParts != "") { console.log("equivalentParts",response.equivalentParts); // jQuery('#relatedProducts .title').text('Equivalent Parts'); // jQuery('.mainContent #relatedProducts .owl-stage').html(response.equivalentParts); // jQuery('.mainContent #relatedProducts .owl-nav').addClass('disabled'); } else { jQuery('.proRelated').css('display','block'); } // Start Frequently bought productsconsole.log("response>>freq111",response) var FBTproductArray = []; if(response.Frequently_bought_products != "") { console.log("inside the if condition if FBT Data is there") console.log("response.Frequently_bought_products",response.Frequently_bought_products) // console.log("fbt-prod",response.fbtParts); var freq_length = response.Frequently_bought_products.length; console.log("freq_length",freq_length) response.Frequently_bought_products.forEach(function (arrayItem) { console.log("arrayItemarrayItem",arrayItem) var partNumber = arrayItem.partNumber; console.log("partNumber>>check",partNumber) FBTproductArray.push(partNumber); }); } console.log("FBTproductArrayFBTproductArray",FBTproductArray)if(FBTproductArray.length > 0 ) { const FBTproductParts = FBTproductArray.join(" OR "); console.log("FBTproductParts",FBTproductParts) var FBTstorefront_AccessToken = '275e2c2c71750cf915068494bbd5c366'; async function getFBTProduct_Details() { var FBTMainProArray = []; const product_response = await fetch("https://bertazzoniparts.myshopify.com/api/2023-04/graphql.json", { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Shopify-Storefront-Access-Token': FBTstorefront_AccessToken, }, body: JSON.stringify({ query: `{ products(query: "${FBTproductParts}", first: 250) { nodes { id title description handle tags vendor variants(first: 250) { nodes { id sku priceV2 { amount currencyCode } } } images(first: 250) { nodes { originalSrc } } } } } `, }), }); // console.log("product_response",product_response) const FBTproduct_result = await product_response.json(); console.log("FBTproduct_result",FBTproduct_result) if (FBTproduct_result.data.products) { FBTMainProArray.push(FBTproduct_result.data.products); } console.log("FBTMainProArrayFBTMainProArray>>>",FBTMainProArray) console.log("response.Frequently_bought_products",response.Frequently_bought_products) var allParentNodes = [];console.log("productPartsproductParts>>>", response.Frequently_bought_products);console.log("productArrayproductArrayproductArray", FBTMainProArray);// Copying the productParts arrayvar copiedProductParts = [...response.Frequently_bought_products];// Array to store matched SKUsvar matchedSKUs = [];// Loop through FBTMainProArray to find matchesfor (var j = 0; j < FBTMainProArray[0].nodes.length; j++) { var productNode = FBTMainProArray[0].nodes[j]; var variants = productNode.variants.nodes; // Correctly access the node's variants // Loop through variants nodes for (var k = 0; k < variants.length; k++) { var storefrontSKU = variants[k].sku.toLowerCase(); // Convert to lowercase // Find the index of the matched part number in the copied array var matchedIndex = copiedProductParts.findIndex(part => part.partNumber.toLowerCase() === storefrontSKU); // If a match is found, remove the matched part number from the copied array if (matchedIndex !== -1) { matchedSKUs.push(productNode); // Store the full product object copiedProductParts.splice(matchedIndex, 1); break; // Break to avoid duplicate entries for the same product } }}// Push matched SKUs into allParentNodesif (matchedSKUs.length > 0) { allParentNodes.push({ nodes: matchedSKUs });}// Push the remaining unmatched partscopiedProductParts.forEach(part => { allParentNodes.push({ node: [part] });});console.log("allParentNodes", allParentNodes); if(allParentNodes){ console.log("all nodes Done") // var subcatArray = []; // var webcatArray = []; // var categoryArray = []; allParentNodes.forEach(function(Data) { console.log("DataData") if (Data.nodes) { Data.nodes.forEach(node => { const partTitle = node.title; const proVen = node.vendor; console.log("proVen:", proVen); const partHandle = node.handle; console.log("Handle:", partHandle); const partDescription = node.description; // console.log("Description:", node.description); var parttags = node.tags; console.log("parttagsparttags", parttags) // if (parttags && parttags.length > 0) { // parttags.forEach(function(tag) { // if (tag.startsWith("subcate:")) { // subcatArray.push(tag.split(":")[1]); // } else if (tag.startsWith("webcat:")) { // webcatArray.push(tag.split(":")[1]); // } // }); // } // const webcatTags = parttags.filter(tag => tag.startsWith("webcat:")); // console.log("webcatTags",webcatTags); // const webcatTagsSTR = webcatTags[0].split(":")[1].trim(); // console.log("webcatTagsSTR",webcatTagsSTR); console.log("node.variantsnode.variants",node.variants.nodes[0].priceV2) // if (node.variants && node.variants.nodes.length > 0) { // console.log("SKU:", node.variants.nodes[0].sku); const partprice = node.variants.nodes[0].priceV2.amount; const variantId = node.variants.nodes[0].id; console.log("variantId:",variantId) var partvariantId = variantId.split('/').pop(); console.log("partvariantId:",partvariantId) // } let partImage = ''; if (node.images && node.images.nodes.length > 0) { partImage = node.images.nodes[0].originalSrc; // console.log("Image Path:", node.images.nodes[0].originalSrc); // Assuming images have a path property }else{ // console.log("Brandlinecode>>>2",Brandlinecode) // var newApiImage = 'https://encompass-11307.kxcdn.com/imageDisplay?mfgCode='+ Brandlinecode + '&type=b&size=s'; // console.log("newApiImage",newApiImage) partImage = 'https://encompass-11307.kxcdn.com/imageDisplay?mfgCode='+ Brandlinecode + '&type=b&size=s'; } // let partImage1; // if (node.images && node.images.nodes && node.images.nodes.length > 0 && node.images.nodes[0].originalSrc) { // partImage1 = node.images.nodes[0].originalSrc; // console.log("Image Path:", partImage); // } else { // partImage1 = "path/to/demo-image.jpg"; // Replace this with the actual path to your demo image // console.log("Image not found. Using demo image:", partImage1); // } var Divappend = `

${partTitle}

$ ${partprice}

` // console.log("DivappendDivappend",Divappend) var tempContainer = document.createElement('div'); tempContainer.innerHTML = Divappend; var BoughtTogetherDiv = document.getElementById('faq_flex'); BoughtTogetherDiv.append(tempContainer.firstChild); // $('#product-append').append(Divappend); }); } if (Data.node) { Data.node.forEach(node => { const partBasePN = node.basePN; // const partCategoryName = node.categoryName; // console.log("partCategoryName",partCategoryName) // var formattedCategoryName = partCategoryName.split(',').map(category => category.trim()).join(' | '); // console.log("formattedCategoryName", formattedCategoryName); // categoryArray.push(partCategoryName); const partMfgName = node.mfgName; const partDescription = node.partDescription; const partNumber = node.partNumber; console.log("partNumber",partNumber) const imagePath = node.picturePath; console.log("imagePath",imagePath) const partPrice = node.partPrice; console.log("partPrice",partPrice) // if (partCategoryName && partCategoryName.length > 0) { // partCategoryName.forEach(function(tag) { // if (tag.startsWith("subcate:")) { // subcatArray.push(tag.split(":")[1]); // } else if (tag.startsWith("webcat:")) { // webcatArray.push(tag.split(":")[1]); // } // }); // } let finalPath; if (imagePath.startsWith("http")) { // If imagePath starts with 'http', use the same path finalPath = imagePath; } else { // If imagePath does not start with 'http', prepend the necessary URL finalPath = "https://encompass-11307.kxcdn.com/imageDisplay?" + imagePath; } console.log("finalPath", finalPath); // finalPath = finalPath.replace(/([?&]size=)[^&]*/, '$1s'); // console.log("finalPath for single product page",finalPath); var Divappend = `

` // console.log("DivappendDivappend",Divappend) var tempContainer = document.createElement('div'); tempContainer.innerHTML = Divappend; var BoughtTogetherDiv = document.getElementById('faq_flex'); BoughtTogetherDiv.append(tempContainer.firstChild); // $('#product-append').append(Divappend); // }); }); } }); } } getFBTProduct_Details() $(document).on('click',".modellistpara,.add_to_cart_encompass",function(){ handleClick(this); }); } else{ console.log("inside the else condition if FBT Data is no there") $('.box_data').hide(); } // var pro_arr = []; // const storefrontAccessToken = '275e2c2c71750cf915068494bbd5c366'; // const resp = fetch("https://bertazzoniparts.myshopify.com/api/2023-04/graphql.json", { // method: 'POST', // headers: { // 'Content-Type': 'application/json', // 'X-Shopify-Storefront-Access-Token': storefrontAccessToken, // }, // body: JSON.stringify({ // query: `{ // products(query: "${partNumber}", first: 250) { // nodes { // id // title // description // handle // variants(first: 10) { // nodes { // id // priceV2 { // amount // currencyCode // } // } // } // images(first: 250) { // nodes { // originalSrc // } // } // } // } // }` // }) // }) // .then(response => response.json()) // .then((data)=>{ // const productsListDiv = document.querySelector('.slick-carousel'); // const myData = data; // console.log('myData>>>',myData) // var variantProId = []; // myData.data.products.nodes.forEach(product => { // console.log("product",product) // const { title, variants,images, handle } = product; // const amount = variants.nodes[0].priceV2.amount; // const variantId = variants.nodes[0].id; // console.log("variantId",variantId) // var variantID = variantId.split('/').pop(); // console.log("variantID", variantID); // variantProId.push(variantID); // console.log("title>>>>>>>>>>>>>>>>>>>>>>>>>>",title) // console.log("amount>>>>>>>>>>>",amount) // console.log("handle>>>>>>>>>>>>>>>>>>",handle) // let imagesrc = ''; // if(images.nodes.length > 0 ){ // imagesrc = images.nodes[0].originalSrc; // }else{ // imagesrc = 'https://encompass-11307.kxcdn.com/imageDisplay?mfgCode=BRT&type=b&size=s'; // } // var bougntPara = `

//

// Lokring Appliance Lrsm Cutting Wheel - L13001304 (8) //

//

//

${title}

//

Price: $${amount}

//

//

// //

//

`; // console.log("bougntPara>>>>>",bougntPara) // var tempContainer = document.createElement('div'); // tempContainer.innerHTML = bougntPara; // var BoughtTogetherDiv = document.getElementById('faq_flex'); // BoughtTogetherDiv.append(tempContainer.firstChild); // // jQuery('.boughtaddtocart').click(function(event) { // // event.preventDefault(); // // const IdAttr = $(this).attr('IdAttr'); // // console.log("IdAttr shreya",IdAttr); // // if (IdAttr) { // // jQuery.ajax({ // // type: 'POST', // // url: '/cart/add.js', // // data: { // // quantity: 1, // // id: IdAttr // // }, // // success: function(response) { // // var responseData = JSON.parse(response); // // console.log("responseData",responseData) // // // window.location.reload(); // // }, // // error: function(xhr, status, error) { // // console.error("Error adding product to cart:", error); // // } // // }); // // } else { // // console.error("No matched variant ID found."); // // } // // }); // // productDiv.classList.add("two_flex"); // // console.log("imagesrc>>>>>>>>>>>>",imagesrc) // // const productDiv = document.createElement('div'); // // var para = `

// //

// // Lokring Appliance Lrsm Cutting Wheel - L13001304 (9) // //

// //

// //

${title}

// //

Price: $${amount}

// // View More // //

// //

`; // // productDiv.innerHTML = `

// //

// //

// //

// //

// // // // // // // //

// //

// //

// //

// //

// //

// //

// //

// // ${title} // //

// //

// //

// //

// // // // $${amount} // // // //

// //

// //

// // // //

// //

// //

// //

// // `; // //

// console.log(productDiv) // //productsListDiv.appendChild(productDiv); // }) // console.log("variantProId>>>>>>>>>>>>>>>>>>>>>>>>>>>",variantProId) // }).catch(error => { // return Promise.reject() // }); // let pro_cnt = pro_arr.length; // console.log("pro_cnt",pro_cnt) // var fbt_html = `

//

//

//

//

// // // //

//

//

//

//

//

//

//

// Bertazzoni X366GGVBI 36-Inch Pro-style Gas Range With 6 Sealed Burners //

//

//

//

// // $99,999.00 // //

//

//

// //

//

//

//

`; // //jQuery('.fbt-prod').append(response.fbtParts); // }); // end Frequently bought products // if(response.fbtParts != "") { // // console.log("fbt-prod",response.fbtParts); // response.fbtParts.forEach(function (arrayItem) { // var partNumber = arrayItem.partNumber; // console.log(partNumber); // var pro_arr = []; // const storefrontAccessToken = '275e2c2c71750cf915068494bbd5c366'; // const resp = fetch("https://bertazzoniparts.myshopify.com/api/2023-04/graphql.json", { // method: 'POST', // headers: { // 'Content-Type': 'application/json', // 'X-Shopify-Storefront-Access-Token': storefrontAccessToken, // }, // body: JSON.stringify({ // query: `{ // products(query: "${partNumber}", first: 250) { // nodes { // id // title // description // handle // variants(first: 10) { // nodes { // priceV2 { // amount // currencyCode // } // } // } // images(first: 250) { // nodes { // originalSrc // } // } // } // } // }` // }) // }) // .then(response => response.json()) // .then((data)=>{ // const productsListDiv = document.querySelector('.slick-carousel'); // const myData = data; // console.log('myData>>>',myData) // myData.data.products.nodes.forEach(product => { // console.log("product",product) // const { title, variants,images, handle } = product; // const amount = variants.nodes[0].priceV2.amount; // let imagesrc = ''; // if(images.nodes.length > 0 ){ // imagesrc = images.nodes[0].originalSrc; // }else{ // imagesrc = 'https://encompass-11307.kxcdn.com/imageDisplay?mfgCode=BRT&type=b&size=s'; // } // const productDiv = document.createElement('div'); // productDiv.classList.add("two_flex"); // var para = `

//

// Lokring Appliance Lrsm Cutting Wheel - L13001304 (12) //

//

//

${title}

//

Price: $${amount}

// View More //

//

`; // productDiv.innerHTML = `

//

//

//

//

// // // //

//

//

//

//

//

//

//

// ${title} //

//

//

//

// // $${amount} // //

//

//

// //

//

//

//

// `; // //

// console.log(productDiv) // //productsListDiv.appendChild(productDiv); // }) // }).catch(error => { // return Promise.reject() // }); // let pro_cnt = pro_arr.length; // console.log("pro_cnt",pro_cnt) // var fbt_html = `

//

//

//

//

// // // //

//

//

//

//

//

//

//

// Bertazzoni X366GGVBI 36-Inch Pro-style Gas Range With 6 Sealed Burners //

//

//

//

// // $99,999.00 // //

//

//

// //

//

//

//

`; // //jQuery('.fbt-prod').append(response.fbtParts); // }); // } } }); //Compatible model // jQuery.ajax({ // url: 'https://fridgeparts.us/bertazzonipartsapp/admin_ajax.php', // type: 'POST', // data: { // action : 'get_compatible_models', // shop : shop, // variant_barcode : variant_barcode, // }, // success: function(data){ // // console.log("get_compatible_models",data); // var response = JSON.parse(data) // if(response.compatibleModels != "") { // jQuery('#compatible').html(''); // var modelCount = response.compatibleModels.length; // var html_data = '

    '; // for (var i = 0; i < modelCount; i++) { // var model = response.compatibleModels[i]; // var modelLink = model.replace("/", "-"); // modelLink = modelLink.replace("/", "-"); // if(i % 10 == 0 && i != 0){ // html_data += '
    '; // } // html_data +='
  • '+model+'
  • '; // } // html_data += '

'; // jQuery('#compatible').html( html_data); // }else{ // jQuery('#compatible').html('

No model found for this product/parts.

'); // } // } // }); // $('.Frequently-Bought-slider').slick({ // slidesToShow: 5, // slidesToScroll: 1, // arrows: true, // autoplay: true, // autoplaySpeed: 2000, // prevArrow: '

', // nextArrow: '

', // responsive: [ // { // breakpoint: 1024, // settings: { // slidesToShow: 3, // slidesToScroll: 3, // adaptiveHeight: true, // } // }, // { // breakpoint: 600, // settings: { // slidesToShow: 1.5, // slidesToScroll: 1, // } // } // ] // }); } else { jQuery('.btnAddToCart').attr("disabled", "true"); } });

  • Description
  • Compatible models

Lokring Appliance Lrsm Cutting Wheel - L13001304

The Lokring Appliance Lrsm Cutting Wheel - L13001304 is the correct replacement for the following model numbers

Frequently Bought Together

Lokring Appliance Lrsm Cutting Wheel - L13001304 (2024)
Top Articles
Cain City Razzooper from Cain City, Kansas
Bryant Air Conditioner Parts Diagram
2022 Basketball 247
Dive Bars With Pool Tables Near Me
Harry Potter Magic Awakened best cards tier list – July 2023
Jackie Knust Wendel
Melissa N. Comics
Valeriewhitebby Footjob
Wat is 7x7? De gouden regel voor uw PowerPoint-presentatie
Studyladder Login
Jordanbush Only Fans
Weather Radar Los Angeles Noaa
The Menu Showtimes Near Regal Edwards Ontario Mountain Village
Rhiel Funeral Durand
How Much Is Cvs Sports Physical
Apria Healthcare - 26 Reviews - Sacramento, CA
Bowser's Fury Coloring Page
Water Leaks in Your Car When It Rains? Common Causes & Fixes
Ice Quartz Osrs
Maryland Parole Hearing Schedule 2023
Week In Review: Chaos at BDSwiss , IronFX Founder's Prop Firm, US FX Deposits, and More
Case Overview: SAMA IM01 – SFF.Network
Language levels - Dutch B1 / 2 –What do these language levels mean? - Learn Dutch Online
N33.Ultipro
Quarante ans après avoir arrêté, puis changé le temps
Devil May Cry 3: Dante's Awakening walkthrough/M16
Does Iherb Accept Ebt
VMware accompagne ses partenaires et soutient leur transformation en faisant évoluer son programme « VMware Partner Connect » - Broadcom News & Stories - Français
Indian Restaurants In Cape Cod
Bj's Gas Price Victor Ny
Grand Forks (British Columbia) – Travel guide at Wikivoyage
R Mcoc
Encore Atlanta Cheer Competition
Witchwood Icon
Need flooring installation? Carpet Hardwood floor Vinyl plank Laminate - skilled trade services - craigslist
Dr Roger Rosenstock Delray Beach
Dicks: The Musical Showtimes Near Regal Galleria Mall
I Heard The Bells Film Showtimes Near Newport Cinema Center
Fuzz Bugs Factory Number Bonds
Flowers Jewel Osco
C Spire Express Pay
Nashville Predators Wiki
Myusu Canvas
Prodigy Login For Students
Apartments for Rent in Atlanta, GA - Home Rentals | realtor.com®
Busted Newspaper Mcpherson Kansas
Kronos.nyp
Computer Repair Arboretum North Carolina
Fgo Spirit Root
A Man Called Otto Showtimes Near Cinemark Palace 20
Craigslist Pgh Furniture
Lubbock Avalanche Journal Newspaper Obituaries
Latest Posts
Article information

Author: Edmund Hettinger DC

Last Updated:

Views: 6192

Rating: 4.8 / 5 (58 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Edmund Hettinger DC

Birthday: 1994-08-17

Address: 2033 Gerhold Pine, Port Jocelyn, VA 12101-5654

Phone: +8524399971620

Job: Central Manufacturing Supervisor

Hobby: Jogging, Metalworking, Tai chi, Shopping, Puzzles, Rock climbing, Crocheting

Introduction: My name is Edmund Hettinger DC, I am a adventurous, colorful, gifted, determined, precious, open, colorful person who loves writing and wants to share my knowledge and understanding with you.