Musterring Bank Tavia (2024)

Zoomen per Doppelklick

ab 1.232,00€

Inkl. 19% MwSt.

Versandkostenfrei!

  • Breite wählbar
  • verschiedene Gestelle

Lieferzeit: 8 - 10 Wochen

Produktdatenblätter

Treffen Sie eine Vorauswahl der Optionen für Ihre Konfiguration

Musterring Tavia Produktblatt Musterring Tavia Aufbauanweisung

Ihr Musterring Bank Tavia ist fertig.

Jetzt in den Warenkorb legen!

Aktuelle Auswahl: ()

Auswahl vollständig

Option ausgewählt

Optionen ausgewählt

Lade Optionen ...

  • Auswahl zurücksetzen?

Ihre Zusammenstellung

Inkl. 19% MwSt.

Dieses Produkt ist nicht vorgefertigt und wird individuell für Sie produziert. Bitte beachten Sie unsere Widerrufsbelehrung.

Dieses Produkt ist nicht vorgefertigt und wird individuell für Sie produziert. Bitte beachten Sie unsere Widerrufsbelehrung.

Auswahl zurücksetzen?

Wenn Sie zu zurückspringen, wird jede Auswahl nach diesem Punkt, die sie bereits getroffen haben, zurückgesetzt.

` ); }, getImageUrl(item) { const optionElement = item.querySelector('input'); let [optionId, valueId] = this.getOptionValuesByElement(optionElement); const type = this.getOptionType(optionId, valueId); let imageUrl = this.optionData.images[type][valueId]; if (imageUrl === undefined) { imageUrl = this.optionData.placeholderUrl; } imageUrl = imageUrl.replace(this.optionData.imageDirUrl, ''); if (imageUrl.indexOf('/') === 0) { imageUrl = this.optionData.thumbnailDirUrl + imageUrl; } return imageUrl; }, /** * Tooltip */ appendTooltip(item) { const tooltipHtml = this.getTooltipHtml(item); if (tooltipHtml) { item.insertAdjacentHTML('afterbegin', this.getTooltipHtml(item)); } }, getTooltipHtml(item) { const optionIdElement = item.querySelector('[data-option-id]'); let [optionId, valueId] = this.getOptionValuesByElement(optionIdElement); const type = this.getOptionType(optionId, valueId); const description = this.optionData.description[type][valueId]; if (description === '') { return; } switch (item) { default: return `

` + description + `

`; } }, /** * Summary */ async loadSummary() { await fetch('https://livim.de/configurator/ajax/showelements/?' + new URLSearchParams({ id: document.querySelector('input[name="product"]').value })) .then(response => response.text()) .then(html => { this.injectSummary(html); if (html.length > 0) { const parser = new DOMParser(); const parsedHtml = parser.parseFromString(html, 'text/html'); const dataIndex = parsedHtml.querySelector('[data-index]'); if (dataIndex !== null) { this.indexInSession = dataIndex.dataset.index; } } if (this.summaryIsSaving === true) { this.complete = true; this.summaryIsSaving = false; } }); }, injectSummary(html) { if (html !== null) { if (html.length > 0) { this.summaryAvailable = true } else { this.summaryAvailable = false; this.complete = false; this.configurationInProgress = true; } } else if (html == null || html == '') { this.summaryAvailable = false this.complete = false; this.configurationInProgress = true; if (this.configuratorOptions.length) { this.resetTo(this.configuratorOptions[0].id); } } document.querySelector('#summary > .summary_content').innerHTML = html; this.updateSummaryPrice(); }, async removeElement(index) { fetch('https://livim.de/configurator/ajax/removeelement/', { method: 'POST', body: new URLSearchParams({ index_in_session: index, form_key: document.querySelector('input[name="form_key"]').value }) }) .then(response => response.text()) .then(htmlObject => JSON.parse(htmlObject).html) .then(html => { this.injectSummary(html); }) .catch(error => { console.error(error); }); }, removeAllElements() { fetch('https://livim.de/configurator/ajax/removeallelements/', { method: 'POST', body: new URLSearchParams({ form_key: document.querySelector('input[name="form_key"]').value }) }).then(response => response.text()).then(html => { if (this.configuratorOptions.length) { this.resetTo(this.configuratorOptions[0].id); } this.injectSummary(html); this.summaryAvailable = false; this.configurationInProgress = true; }).catch(error => { console.error(error); }); }, updateSummaryPrice() { let summaryPrice = 0; const configuredProducts = document.querySelectorAll('#summary .configured-product'); configuredProducts.forEach(configuredProduct => { summaryPrice += configuredProduct.getAttribute('data-price_as_configured') * configuredProduct.getAttribute('data-qty'); }); summaryPrice = hyva.formatPrice(summaryPrice); this.setMultiBundleFinalPrice(summaryPrice); }, /** * Price */ calculateFinalPrice(option) { if (this.finalPriceWithCustomOptions > 0) { this.selectionFinalPrice = this.finalPriceWithCustomOptions; return; } const optionIdAttribute = option.getAttribute('data-option-id'); let [optionId, valueId] = optionIdAttribute.split('_'); if (optionIdAttribute.includes('-') === true) { [optionId, valueId] = optionIdAttribute.split('-'); } if (document.querySelector('div[x-data="initBundleOptions()"]')) { const options = this.optionData.multibundleOptions[optionId]; if (!options) { return; } const selections = options.selections[valueId]; if (!selections) { return; } this.selectionFinalPrice += Number(selections.prices.finalPrice.amount); } else { const optionPriceElement = option.parentElement.querySelector('[data-price-amount]'); if (!optionPriceElement) { return; } const optionPrice = Number(optionPriceElement.dataset.priceAmount); this.selectionFinalPrice += Number(optionPrice); } }, setMultiBundleFinalPrice(value) { document.querySelector('#bundle-final-price').innerText = value; }, /** * MultiBundle Save */ saveSelectionToSummary() { this.summaryIsSaving = true; this.indexInSession += 1; let params = {}; const selectedOptions = document.querySelectorAll('#product-options-wrapper .options-list :checked'); selectedOptions.forEach(option => { let optionName = option.name; if (!optionName) { optionName = option.parentElement.name; } optionName = optionName.replace(/[a-z_\[\]]*([0-9]+)]/, '$1'); params[optionName] = option.value; this.calculateFinalPrice(option); }); params['product'] = document.querySelector('input[name="product"]').value; params['qty'] = document.querySelector('input[name="qty"]').value; params['index_in_session'] = this.indexInSession; params['price_as_configured'] = hyva.formatPrice(this.selectionFinalPrice, true); this.selectionFinalPrice = 0; params['form_key'] = document.querySelector('input[name="form_key"]').value; fetch('https://livim.de/configurator/ajax/saveelement/', { method: 'POST', body: new URLSearchParams(params) }).then(() => { window.dispatchEvent( new CustomEvent( 'new-summary-added', {} ) ); }).catch(error => { console.error(error); }); } }; }

Musterring Bank Tavia

Erleben Sie zeitloses Design und höchsten Sitzkomfort mit der Bank Tavia. Die Sitz- und Rückenfläche präsentieren sich in einer 3D-Formschaum-Schale, die durch ein weiches Sitzkissen ergänzt wird. Diese Kombination vereint nicht nur Ästhetik und Bequemlichkeit, sondern auch eine durchdachte Ergonomie.

Die Bank Tavia ist in verschiedenen Breiten erhältlich – wählen Sie zwischen 180, 200 oder 220 cm, um Ihre individuellen Platzanforderungen zu erfüllen. Egal ob als Solist oder als Teil einer größeren Sitzlandschaft, Tavia passt sich flexibel Ihren Bedürfnissen an.

Die Auswahl an verschiedenen Gestellen ermöglicht es Ihnen, Tavia perfekt an Ihren Einrichtungsstil anzupassen. Ob moderne Metallgestelle oder klassische Holzvarianten, die Bank fügt sich harmonisch in jede Umgebung ein.

Stoff oder Leder - Luxuriöse Bezugsvarianten für anspruchsvollen Komfort

Entdecken Sie die Vielfalt der Bezugsstoffe und Ledervarianten, um Tavia nach Ihrem persönlichen Geschmack zu gestalten. Von zeitlosen Stoffen bis hin zu luxuriösen Lederoberflächen steht Ihnen eine breite Palette an Optionen zur Verfügung.

Für eine schonende Platzierung auf verschiedenen Untergründen bieten wir optionale Filzgleiter an. Diese sorgen nicht nur für einen stabilen Stand, sondern schützen auch Ihren Boden vor möglichen Abriebspuren.

Mit der Bank Tavia setzen Sie nicht nur auf ein hochwertiges Möbelstück, sondern auch auf individuelle Gestaltungsmöglichkeiten und erstklassigen Sitzkomfort. Entdecken Sie die perfekte Verbindung von Form und Funktionalität für Ihren Wohnraum.

Der Stuhl wird zerlegt per Sepedition bis in das gewünschte Zimmer geliefert.

Sollten Sie Fragen zu dem Modell, zu Ihrer Bestellung, oder zum Ablauf der Lieferung haben, können Sie uns telefonisch unter der 03631/4731622 erreichen, oder uns eine Email an service@livim.de senden.

Bei Livim ist der Versand immer kostenlos (außer auf Inseln). Auch ein sicherer Kauf auf Rechnung ist bei uns problemlos möglich. Bei der Bezahlmethode Vorkasse wird Ihnen zusätzlich ein Sofortskonto von 3% abgezogen.

Details

Warengruppe
Bank

Lieferzeit
8 - 10 Wochen

Hersteller
Musterring

Raum
Esszimmer

Material
Je nach Auswahl

Besondere Merkmale
Hölzer aus nachhaltigem Anbau

Sitzhöhe
ca. 50 cm

Sitztiefe
ca. 44 cm

Abmessungen
Höhe: ca. 87 cm | Tiefe: ca. 66 cm

Stil
modern

Armlehne
ja

Material Gestell/Beine
Je nach Auswahl

Vormontiert
Nein

Wir haben andere Produkte gefunden, die Ihnen gefallen könnten!

Mit der Tabulatortaste können Sie durch die Elemente des Karussells navigieren. Mit den Skip-Links können Sie das Karussell überspringen oder direkt zur Karussellnavigation wechseln. Clicken, um das Karussell zu überspringen

Musterring Bank Tavia (2024)
Top Articles
Latest Posts
Article information

Author: Aracelis Kilback

Last Updated:

Views: 5362

Rating: 4.3 / 5 (44 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Aracelis Kilback

Birthday: 1994-11-22

Address: Apt. 895 30151 Green Plain, Lake Mariela, RI 98141

Phone: +5992291857476

Job: Legal Officer

Hobby: LARPing, role-playing games, Slacklining, Reading, Inline skating, Brazilian jiu-jitsu, Dance

Introduction: My name is Aracelis Kilback, I am a nice, gentle, agreeable, joyous, attractive, combative, gifted person who loves writing and wants to share my knowledge and understanding with you.