Ball handle for cutter Mastro FLA0014, FLA0015, Sirman C9VV CE 471001

Ball handle for cutter Mastro FLA0014, FLA0015, Sirman C9VV CE 471001


or
if(!document.getElementById('paypal-smart-payment-script')) { var script = document.createElement("script"); script.type = "module"; script.id = "paypal-smart-payment-script"; script.src = "https://cdn02.plentymarkets.com/8ahp730kiej7/plugin/92/paypal/js/smartPaymentScript.min.js"; script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw"); script.setAttribute("data-currency", "EUR"); script.setAttribute("data-merchant-id", "5Y6YMEHX45AUQ"); script.setAttribute("data-append-trailing-slash", ""); script.setAttribute("data-locale", "en_GB"); document.body.appendChild(script); }
if (typeof paypal_plenty_sdk === 'undefined' || typeof renderPayPalButtons !== 'function') { document.addEventListener('payPalScriptInitialized', () => { renderPayPalButtons( '920677647', 'paypal', 'buynow', 'rect' , 'blue' ) }); } else { renderPayPalButtons( '920677647', 'paypal', 'buynow', 'rect' , 'blue' ) }
  • Purchase on account for businesses, public authorities & more.
  • Consultation via +49 34901 120020 (local rate) or Open WhatsApp chat

Item-No.: 7011207

Ganze Beschreibung anzeigen var descriptionTab = document.querySelector(".description"); var showMore = document.querySelector(".show-more-wrapper"); // Prüfen, ob die Höhe überschritten wird if (descriptionTab.scrollHeight > 400) { descriptionTab.classList.add("truncated"); } // Event Listener für "Mehr anzeigen" showMore.addEventListener("click", function (e) { e.preventDefault(); descriptionTab.classList.toggle("expanded"); descriptionTab.classList.toggle("truncated"); });
This article will fit the following devices
Compare the information on the nameplate of your device with the data in the table
Where can I find the nameplate?
Use brand quick filter:
Search tip: Look for the manufacturer name and/or model to filter the device list. You can also search for individual (partial) terms
Manufacturer Type View all spare parts
Sirman C9VV CE Details
RM-Gastro PD2020L Details
RM-Gastro PD2020R Details
RM-Gastro PM2015R Details
Cookmax 471001 Details
Mastro FLA0014 Details
Mastro FLA0015 Details
(function() { const uniqueID = "681caf3dbe6d8"; addSearchInput(); generateMakerFilterPills(); function debounce(func, wait) { let timeout; return function(...args) { const context = this; clearTimeout(timeout); timeout = setTimeout(() => func.apply(context, args), wait); }; } function addSearchInput() { const table = document.querySelector("#articleDevicesList_681caf3dbe6d8 table"); const searchInput = document.getElementById("deviceSearchInput_681caf3dbe6d8"); searchInput.addEventListener("input", debounce(filterTable, 300)); sortTable(table); } function generateMakerFilterPills() { const table = document.querySelector("#articleDevicesList_681caf3dbe6d8 table"); const tbody = table.getElementsByTagName("tbody")[0]; const rows = tbody.getElementsByTagName("tr"); // Extract unique makers from the table const makers = new Set(); for (let i = 0; i < rows.length; i++) { const cell1 = rows[i].getElementsByTagName("td")[0]; const maker = cell1.innerText || cell1.textContent; makers.add(maker); } if (makers.size > 1) { const pillContainer = document.getElementById('makerFilterPills_681caf3dbe6d8'); pillContainer.classList.add('mb-3'); makers.forEach(maker => { const pill = document.createElement('span'); pill.classList.add('badge', 'badge-primary', 'maker-filter-pill'); pill.setAttribute('data-maker', maker); pill.textContent = maker; pill.style.cursor = 'pointer'; pill.style.marginRight = '5px'; pill.addEventListener('click', function() { filterTableByMaker(maker.toUpperCase()); pillContainer.style.display = 'none'; const searchInput = document.getElementById("deviceSearchInput_681caf3dbe6d8"); searchInput.value = maker; // Track maker filter pill click window.dataLayer = window.dataLayer || []; window.dataLayer.push({ event: 'funnel_event', action: 'clicked_maker_filter', maker: maker }); }); pillContainer.appendChild(pill); }); } else { const makerFilterPillsLabel = document.getElementById('makerFilterPillsLabel_681caf3dbe6d8'); makerFilterPillsLabel.style.cssText = "display: none !important;"; } } var isFiltered = false; function filterTable() { const spinner = document.getElementById("loadingSpinner_681caf3dbe6d8"); spinner.style.display = "block"; // Show spinner const table = document.querySelector("#articleDevicesList_681caf3dbe6d8 table"); const input = document.getElementById("deviceSearchInput_681caf3dbe6d8"); const filter = input.value.toUpperCase(); const tbody = table.getElementsByTagName("tbody")[0]; const rows = tbody.getElementsByTagName("tr"); const searchTerms = filter.split(" ").filter(term => term.trim() !== ""); if (!isFiltered) { isFiltered = true; window.dataLayer = window.dataLayer || []; window.dataLayer.push({ event: 'funnel_event', action: 'filtered_devices', filter_string: searchTerms }); } for (let i = 0; i < rows.length; i++) { const cell1 = rows[i].getElementsByTagName("td")[0]; const cellText1 = cell1.innerText || cell1.textContent; const cell3 = rows[i].getElementsByTagName("td")[1]; const cellText3 = cell3.innerText || cell3.textContent; const combinedText = cellText1.toUpperCase() + " " + cellText3.toUpperCase(); const found = searchTerms.every(term => combinedText.indexOf(term) > -1); if (found) { rows[i].style.display = ""; } else { rows[i].style.display = "none"; } } spinner.style.display = "none"; // Hide spinner after filtering } function filterTableByMaker(maker) { const table = document.querySelector("#articleDevicesList_681caf3dbe6d8 table"); const tbody = table.getElementsByTagName("tbody")[0]; const rows = tbody.getElementsByTagName("tr"); for (let i = 0; i < rows.length; i++) { const cell1 = rows[i].getElementsByTagName("td")[0]; const cellText1 = cell1.innerText || cell1.textContent; if (cellText1.toUpperCase() === maker) { rows[i].style.display = ""; } else { rows[i].style.display = "none"; } } } function sortTable(table) { const tbody = table.getElementsByTagName("tbody")[0]; const rows = Array.from(tbody.getElementsByTagName("tr")); const compare = (a, b) => { const col1A = a.cells[0].innerText; const col1B = b.cells[0].innerText; const col3A = a.cells[2].innerText; const col3B = b.cells[2].innerText; if (col1A === col1B) { return col3A.localeCompare(col3B); } return col1A.localeCompare(col1B); }; const sortedRows = rows.sort(compare); for (const row of sortedRows) { tbody.appendChild(row); } } })();
Your device isn't listed? Not sure if the spare part fits? Can't find your spare part?
We have internal access to several million spare parts for almost every device. We'll find it together!
Get in touch now and let us find your spare part
This is the fastest way for us to find your part
  1. Take a photo where we can clearly see the nameplate or the spare part (How to find the nameplate)
  2. Include the photo with your first request
  3. Describe in detail which part you're looking for
  4. We'll respond within 48 hours (Mon–Fri)
Via WhatsApp Very quick and popular! Start WhatsApp Chat Now WhatsApp number: +49 01514 141 240 8
Via Email service@gastroteileshop.de
$('#item').val("Ball handle for cutter Mastro FLA0014, FLA0015, Sirman C9VV CE 471001 (Artikelnummer: 7011207)").attr('disabled','disabled'); $('.widget-contact-form > div > form button').click(function(){ $('#item').val("Ball handle for cutter Mastro FLA0014, FLA0015, Sirman C9VV CE 471001 (Artikelnummer: 7011207)").attr('disabled','disabled'); });

Still haven’t found what you're looking for?

Option 1: Search directly for your ${$store.getters.currentItemVariation.item.manufacturer.externalName} part number or other terms:


Option 2: Find similar items by browsing our categories and use the filters:


Option 3: Contact us directly!

We have internal access to several million spare parts for almost every device. We’ll find it together!
This is the fastest way for us to find your part
  1. Take a photo where we can clearly see the nameplate or the spare part (How to find the nameplate)
  2. Include the photo in your first message
  3. Describe the spare part you're looking for in more detail
  4. We'll reply within 48 hours (Mon–Fri)
Via WhatsApp Very quick and popular! Start WhatsApp Chat Now WhatsApp number: +49 01514 141 240 8

document.dispatchEvent(new Event("itemViewLoaded"));
Buyer protection
sehr gut 4.63/5.00