Va oferim o gama larga de placi, ideale pentru lucrari de finisaj, cu suprafete netede sau in relief/structurale, care confera o foarte buna rezistenta la alunecare.
Klinker-ul este destinat în primul rând pentru aplicații în aer liber. Este permanent rezistent la fluctuațiile de temperatură și solicitările mecanice semnificative.
Poate fi folosit în zone de intrare, scări, dar și glafuri interioare, terase și coridoare, fațade de clădiri, placări garduri sau diverse amenajări ale grădinii.
Dimensiuni(cm):
- 30 x 30 x 0.85
Impachetare:
- 1.26 mp/cutie
- 52.92 mp/palet
- Gresie
- Gresie si faianta
- Klinker
- Trepte gresie
Produsul se comercializeaza la mp.
| COD EAN | 5949005730015 |
|---|---|
| Producator | Regata |
| Utilizare | Trepte |
function initRecentlyViewedProductsComponent_6a61e137a75d8(options) { const defaultOptions = { isSlider: false, useGraphQL: false, noOfProductsToShow: 5 }; const config = Object.assign({}, defaultOptions, options || {}); function readRecentlyViewedFromStorage () { const data = hyva.getBrowserStorage().getItem(‘recently_viewed_products’); return data ? JSON.parse(data).filter(product => { return config.useGraphQL || product.id; }) : []; } return { products: [], currency: [], noOfProductsToShow: config.noOfProductsToShow, : true, minHeight() { return ‘min-height: ‘ + ((this. && ‘491px’) || 0); }, getProducts() { const recentlyViewedProductsArray = readRecentlyViewedFromStorage(); let itemsToShow = []; if (recentlyViewedProductsArray.length> 0) { // Avoid showing the current product const start = ‘259334’ === ” ? 0 : 1; itemsToShow = recentlyViewedProductsArray.slice(start) } itemsToShow = itemsToShow.slice(0, this.noOfProductsToShow); if (!itemsToShow.length) { this.noOfProductsToShow = 0; this. = false; return; } config.useGraphQL ? this.fetchProducts(itemsToShow) : this.renderRecentlyViewedProducts(itemsToShow) }, fetchProducts(itemsToShow) { const skusToFetch = itemsToShow.map(product => product.sku); const query = `query ($skus: [String!]!) { products(filter: { sku: { in: $skus } }) { items { sku id name small_image { label url } url_key url_suffix visibility status price_range { minimum_price { regular_price { value currency } final_price { value currency } } } } } }`; const variables = JSON.stringify({skus: skusToFetch}); window.fetch(BASE_URL + ‘graphql?’ + new URLSearchParams({query, variables}), { method: ‘GET’, headers: { ‘Store’: ‘default’, ‘Content-Currency’: ‘RON’ }, }) .then((response) => response.json()) .then((result) => { this.currency = (result && result.data && result.data.currency); const responseProducts = ( result && result.data && result.data.products && result.data.products.items ) || []; // fix sorting of the response-products according to the sorting of the requested-products const sortedProducts = []; skusToFetch.forEach(sku => { responseProducts.forEach(productData => { if (sku === productData.sku) { sortedProducts.push(productData); } }); }); this.renderRecentlyViewedProducts(sortedProducts); } ) .finally(() => this. = false) }, // end fetchProducts() renderRecentlyViewedProducts(products) { this.products = products; this. = false; if (config.isSlider) { this.$nextTick(() => this.calcPageSize()); } }, addToWishlist(productId) { const formKey = hyva.getFormKey(); const postUrl = BASE_URL + ‘wishlist/index/add/’; fetch(postUrl, { „headers”: { „content-type”: „application/x-www-form-urlencoded; charset=UTF-8”, }, „body”: „form_key=” + formKey + „&product=” + productId + „&uenc=” + hyva.getUenc(), „method”: „POST”, „mode”: „cors”, „credentials”: „include” }).then(response => { if (response.redirected) { window.location.href = response.url; } else if (response.ok) { return response.json(); } else { typeof window.dispatchMessages !== „undefined” && window.dispatchMessages( [{ type: „warning”, text: „Nu s-a putut adăuga produsul la lista de dorințe.” }], 5000 ); } }).then(response => { if (!response) { return } typeof window.dispatchMessages !== „undefined” && window.dispatchMessages( [{ type: (response.success) ? „success” : „error”, text: (response.success) ? „Produs a fost adăugat în lista de Favorite.” : response.error_message }], 5000 ); window.dispatchEvent(new CustomEvent(„reload-customer-section-data”)); }).catch(function (error) { typeof window.dispatchMessages !== „undefined” && window.dispatchMessages( [{ type: „error”, text: error }], 5000 ); }); }, // end addToWishlist() addToCompare(productId) { const formKey = hyva.getFormKey(); const postUrl = BASE_URL + ‘catalog/product_compare/add/’; fetch(postUrl, { „headers”: { „content-type”: „application/x-www-form-urlencoded; charset=UTF-8”, }, „body”: „form_key=” + formKey + „&product=” + productId + „&uenc=” + hyva.getUenc(), „method”: „POST”, „mode”: „cors”, „credentials”: „include” }).then(response => { if (response.redirected) { window.location.href = response.url; } }).catch(error => { typeof window.dispatchMessages !== „undefined” && window.dispatchMessages( [{ type: „error”, text: error }], 5000 ); }); }, // slider properties active: 0, getSlider() { return this.$root.querySelector(‘.js_slides’); }, pageSize: 4, pageFillers: 0, calcPageSize() { const slider = this.getSlider(); if (slider) { this.pageSize = Math.round(slider.clientWidth / slider.querySelector(‘.js_slide’).clientWidth); this.pageFillers = ( this.pageSize * Math.ceil(this.products.length / this.pageSize) ) – this.products.length; } }, calcActive() { const slider = this.getSlider(); if (slider) { this.active = Math.ceil( Math.round( slider.scrollLeft / (slider.scrollWidth / (this.products.length + this.pageFillers)) ) / this.pageSize ) * this.pageSize; } } } }
this.handleMessage(event)); }, async openModal() { const form = document.getElementById(‘product_addtocart_form’); if (!this.validateForm(form)) { alert(document.getElementById(‘tbi_popup_container’).getAttribute(‘data-required’)); return; } const formData = new FormData(form); try { this.isLoading = true; this.isOpen = true; document.body.style.overflow = ‘hidden’; document.getElementById(‘tbi_popup_container’).classList.add(‘show’); const response = await fetch(‘/fusionpay/api/RegisterProductApplication’, { method: ‘POST’, body: new URLSearchParams(formData), headers: { ‘X-Requested-With’: ‘XMLHttpRequest’ } }); const result = await response.json(); if (result.success !== false && result.url) { this.iframeSrc = result.url; // Fallback timeout to hide if iframe doesn’t load properly setTimeout(() => { if (this.isLoading) { this.isLoading = false; } }, 5000); } else { alert(document.getElementById(‘tbi_popup_container’).getAttribute(‘data-price’)); this.closeModal(); } } catch (error) { console.error(‘Error:’, error); this.closeModal(); } }, closeModal() { this.isOpen = false; this.isLoading = true; this.iframeSrc = ”; document.body.style.overflow = ‘auto’; document.getElementById(‘tbi_popup_container’).classList.remove(‘show’); }, onIframeLoad() { this.isLoading = false; }, validateForm(form) { if (!form) return false; const requiredFields = form.querySelectorAll(‘[required]’); for (let field of requiredFields) { if (!field.value) return false; } const superAttribute = form.querySelectorAll(‘[name^=’super_attribute’]’); if (superAttribute.length> 0) { for (let attr of superAttribute) { if (!attr.value) return false; } } return true; }, async handleMessage(event) { if (event.origin !== this.allowedOrigin) return; try { const data = JSON.parse(event.data); if (data.scheme_id) { await this.addToCart(data); } else if (data.command === ‘redirect’ && data.url) { window.location.href = data.url; } else if (data.command === ”) { this.closeModal(); } } catch (error) { console.error(‘Invalid JSON:’, error); } }, async addToCart(data) { const form = document.getElementById(‘product_addtocart_form’); const formData = new FormData(form); const formDataJson = {}; for (let [key, value] of formData.entries()) { formDataJson[key] = value; } formDataJson.scheme_id = data.scheme_id; formDataJson.downpayment = data.downpayment ?? 0; try { const response = await fetch(‘/fusionpay/api/addToCart’, { method: ‘POST’, headers: { ‘Content-Type’: ‘application/json’, ‘X-Requested-With’: ‘XMLHttpRequest’ }, body: JSON.stringify(formDataJson) }); const result = await response.json(); if (result.success) { if (window.dispatchEvent) { window.dispatchEvent(new CustomEvent(‘reload-customer-section-data’)); } window.dispatchEvent(new CustomEvent(‘private-content-loaded’)); this.closeModal(); window.dispatchEvent(new CustomEvent(‘show-messages’)); } else { console.error(‘Error adding to cart:’, result.error); } } catch (error) { console.error(‘Request failed:’, error); } } }” @tbi-open-modal.window=”openModal()” x-show=”isOpen” x-cloak=”” @click.self=”closeModal()” id=”tbi_popup_container” data-price=”Prețul este sub limita TBI.” data-required=”Selectează toate opțiunile necesare.” data-origin=”.”>Vă rugăm așteptațithis.handleMessage(event)); }, async openModal() { const form = document.getElementById(‘product_addtocart_form’); if (!this.validateForm(form)) { alert(document.getElementById(‘tbi_popup_container’).getAttribute(‘data-required’)); return; } const formData = new FormData(form); try { this.isLoading = true; this.isOpen = true; document.body.style.overflow = ‘hidden’; document.getElementById(‘tbi_popup_container’).classList.add(‘show’); const response = await fetch(‘/fusionpay/api/RegisterProductApplication’, { method: ‘POST’, body: new URLSearchParams(formData), headers: { ‘X-Requested-With’: ‘XMLHttpRequest’ } }); const result = await response.json(); if (result.success !== false && result.url) { this.iframeSrc = result.url; // Fallback timeout to hide if iframe doesn’t load properly setTimeout(() => { if (this.isLoading) { this.isLoading = false; } }, 5000); } else { alert(document.getElementById(‘tbi_popup_container’).getAttribute(‘data-price’)); this.closeModal(); } } catch (error) { console.error(‘Error:’, error); this.closeModal(); } }, closeModal() { this.isOpen = false; this.isLoading = true; this.iframeSrc = ”; document.body.style.overflow = ‘auto’; document.getElementById(‘tbi_popup_container’).classList.remove(‘show’); }, onIframeLoad() { this.isLoading = false; }, validateForm(form) { if (!form) return false; const requiredFields = form.querySelectorAll(‘[required]’); for (let field of requiredFields) { if (!field.value) return false; } const superAttribute = form.querySelectorAll(‘[name^=’super_attribute’]’); if (superAttribute.length> 0) { for (let attr of superAttribute) { if (!attr.value) return false; } } return true; }, async handleMessage(event) { if (event.origin !== this.allowedOrigin) return; try { const data = JSON.parse(event.data); if (data.scheme_id) { await this.addToCart(data); } else if (data.command === ‘redirect’ && data.url) { window.location.href = data.url; } else if (data.command === ”) { this.closeModal(); } } catch (error) { console.error(‘Invalid JSON:’, error); } }, async addToCart(data) { const form = document.getElementById(‘product_addtocart_form’); const formData = new FormData(form); const formDataJson = {}; for (let [key, value] of formData.entries()) { formDataJson[key] = value; } formDataJson.scheme_id = data.scheme_id; formDataJson.downpayment = data.downpayment ?? 0; try { const response = await fetch(‘/fusionpay/api/addToCart’, { method: ‘POST’, headers: { ‘Content-Type’: ‘application/json’, ‘X-Requested-With’: ‘XMLHttpRequest’ }, body: JSON.stringify(formDataJson) }); const result = await response.json(); if (result.success) { if (window.dispatchEvent) { window.dispatchEvent(new CustomEvent(‘reload-customer-section-data’)); } window.dispatchEvent(new CustomEvent(‘private-content-loaded’)); this.closeModal(); window.dispatchEvent(new CustomEvent(‘show-messages’)); } else { console.error(‘Error adding to cart:’, result.error); } } catch (error) { console.error(‘Request failed:’, error); } } }” @tbi-open-modal.window=”openModal()” x-show=”isOpen” x-cloak=”” @click.self=”closeModal()” id=”tbi_popup_container” data-price=”Prețul este sub limita TBI.” data-required=”Selectează toate opțiunile necesare.” data-origin=”.”>Vă rugăm așteptați




