Skeppshult Kleiner Swing, Gewürzdose Walnuss

inkl. ges. MwSt.
zzgl. Versandkosten
(function () { function sortGraduatedPrices() { var priceLists = document.querySelectorAll( '.graduated-prices-list' ); Array.prototype.forEach.call(priceLists, function (priceList) { var priceRows = Array.prototype.slice.call( priceList.querySelectorAll('.graduated-price-row') ); priceRows.sort(function (rowA, rowB) { var quantityA = parseFloat( rowA.getAttribute('data-minimum-quantity') ) || 0; var quantityB = parseFloat( rowB.getAttribute('data-minimum-quantity') ) || 0; return quantityA - quantityB; }); priceRows.forEach(function (priceRow) { priceList.appendChild(priceRow); }); }); } if (document.readyState === 'loading') { document.addEventListener( 'DOMContentLoaded', sortGraduatedPrices ); } else { sortGraduatedPrices(); } })();

Versand in 2-5 Tagen
${ $store.getters.currentItemVariation.variation.availability.names.name}
Versand innerhalb 24h
DHL Express verfügbar

Achtung: Dieser Artikel hat keine Mahlfunktion, sondern dient lediglich als Behälter für Gewürze.

Skeppshult Kleiner - Gewürzdose 

Mit dem Skeppshult Kleiner Swing können Gewürze aufbewahrt werden. Die Kombination aus Walnuss und reinem Gusseisen wirkt sehr edel und bringt neuen Schwung auf den Tisch.

Skeppshult - 25 Jahre Garantie

Informationen zur 25 Jahre Garantie von Skeppshult finden Sie hier.

Achtung: Dieser Artikel hat keine Mahlfunktion, sondern dient lediglich als Behälter für Gewürze.

Skeppshult Kleiner Swing Gewürzdose

Mit dem Skeppshult Kleiner Swing können Gewürze  aufbewahrt werden. Die Kombination aus Walnuss und reinem Gusseisen wirkt sehr edel und bringt neuen Schwung auf den Tisch.

Skeppshult - 25 Jahre Garantie

Informationen zur 25 Jahre Garantie von Skeppshult finden Sie hier.

Beschreibung von Skeppshult Kleiner Swing, Gewürzdose Walnuss


Behälter zum Aufbewahren von Gewürzen

  • Matrial: Gusseisen
  • Deckel aus Walnuss mit Gummidichtung
  • Durchmesser: ca. 6 cm / Hu00f6he ca. 7 cm

Achtung: Dieser Artikel hat keine Mahlfunktion, sondern dient lediglich als Behälter für Gewürze.

Skeppshult Kleiner - Gewürzdose 

Mit dem Skeppshult Kleiner Swing können Gewürze aufbewahrt werden. Die Kombination aus Walnuss und reinem Gusseisen wirkt sehr edel und bringt neuen Schwung auf den Tisch.

Skeppshult - 25 Jahre Garantie

Informationen zur 25 Jahre Garantie von Skeppshult finden Sie hier.

Produktdetails


Artikel ID:
109806

Hersteller:
Skeppshult

Artikel Nr.:
SK-0721V

EAN:
7317930721091

(function () { /** * Wandelt einen formatierten Preis in eine Zahl um. * * Beispiele: * 9,95 € -> 9.95 * 1.299,95 € -> 1299.95 */ function parsePrice(value) { if (!value) { return NaN; } var stringValue = String(value).trim(); var match = stringValue.match( /-?[\d.]+(?:,\d+)?|-?[\d,]+(?:\.\d+)?/ ); if (!match) { return NaN; } var number = match[0]; if (number.indexOf(',') !== -1) { number = number .replace(/\./g, '') .replace(',', '.'); } return parseFloat(number); } /** * Währung aus einem formatierten Preis ermitteln. */ function getCurrency(value) { var stringValue = String(value || ''); if (stringValue.indexOf('€') !== -1) { return '€'; } if (stringValue.indexOf('$') !== -1) { return '$'; } if (stringValue.indexOf('£') !== -1) { return '£'; } return '€'; } /** * Bezugseinheit aus dem Plenty-Grundpreis übernehmen. * * Beispiel: * 99,50 € / Kilogramm * ergibt: * / Kilogramm */ function getBaseUnit(value) { var stringValue = String(value || ''); if (stringValue.indexOf('/') === -1) { return ''; } var parts = stringValue.split('/'); parts.shift(); return '/ ' + parts.join('/').trim(); } /** * Preis passend für die deutsche Shopausgabe formatieren. */ function formatPrice(value, currency) { return value.toLocaleString('de-DE', { minimumFractionDigits: 2, maximumFractionDigits: 2 }) + ' ' + currency; } function prepareGraduatedBasePrices() { var priceLists = document.querySelectorAll( '.offerDetailsBox .graduated-base-prices-list' ); Array.prototype.forEach.call(priceLists, function (priceList) { var defaultPackagePriceFormatted = priceList.getAttribute('data-default-package-price') || ''; var defaultBasePriceFormatted = priceList.getAttribute('data-default-base-price') || ''; var defaultPackagePrice = parsePrice(defaultPackagePriceFormatted); var defaultBasePrice = parsePrice(defaultBasePriceFormatted); var currency = getCurrency(defaultBasePriceFormatted); var baseUnit = getBaseUnit(defaultBasePriceFormatted); var priceRows = Array.prototype.slice.call( priceList.querySelectorAll( '.graduated-base-price-row' ) ); /* * Nach Mindestmenge aufsteigend sortieren. */ priceRows.sort(function (rowA, rowB) { var quantityA = parseFloat( rowA.getAttribute('data-minimum-quantity') ) || 0; var quantityB = parseFloat( rowB.getAttribute('data-minimum-quantity') ) || 0; return quantityA - quantityB; }); priceRows.forEach(function (priceRow) { priceList.appendChild(priceRow); var quantity = parseFloat( priceRow.getAttribute('data-minimum-quantity') ) || 0; /* * Menge 1 enthält bereits den von Plenty * berechneten und formatierten Grundpreis. */ if (quantity <= 1) { return; } var graduatedPackagePrice = parsePrice( priceRow.getAttribute('data-package-price') ); var outputElement = priceRow.querySelector( '.graduated-base-price-value' ); if ( !outputElement || !Number.isFinite(defaultPackagePrice) || !Number.isFinite(defaultBasePrice) || !Number.isFinite(graduatedPackagePrice) || defaultPackagePrice <= 0 || !baseUnit ) { /* * Zeile ausblenden, falls eine korrekte * Berechnung nicht möglich ist. */ priceRow.style.display = 'none'; return; } /* * Grundpreis der Staffel: * * ursprünglicher Grundpreis * × rabattierter Verpackungspreis * ÷ ursprünglicher Verpackungspreis */ var graduatedBasePrice = defaultBasePrice * graduatedPackagePrice / defaultPackagePrice; outputElement.textContent = formatPrice(graduatedBasePrice, currency) + ' ' + baseUnit; }); }); } if (document.readyState === 'loading') { document.addEventListener( 'DOMContentLoaded', prepareGraduatedBasePrices ); } else { prepareGraduatedBasePrices(); } })();

Informationen im Sinne der Produktsicherheitsverordnung (GPSR) finden Sie hier.

DIES KÖNNTE SIE EBENFALLS INTERESSIEREN