ARÇELİK 1151 GD Su Sebili

ARÇELİK 1151 GD Su Sebili

Fiyat : ₺8.999,00(KDV Dahil)
₺1.180,37 `den başlayan taksitlerle

 

Genel Özellikler

 

Musluk

Soğuk - Ortam

 

 

Tank Malzemesi

Paslanmaz Çelik

 

 

Renk

Beyaz

 

 

Ürün Tipi

Tam Boy Su Pınarı

 

 

Kontrol Sistemi Tipi

Mekanik

 

 

 

Diğer

 

Soğuk su tank kapasitesi (L)

3.6 L

 

 

Soğuk Su Derecesi Aralığı

5-10 C

 

 

Soğutma Kapasitesi (lt/saat)

2.5 L/h

 

 

 

Ölçüler

 

Ağırlık

14.8 kg

 

 

Yükseklik

104 cm

 

 

Derinlik

36 cm

 

 

Boyut (cm) (GxYxD)

31 cm

 

 

cultureSettings.RegionId: 0 cultureSettings.LanguageCode: TR
function getReviews() { fetch(url, { method: 'GET', headers: { "Authorization": `Bearer ${apiKey}`, "Content-Type": "application/json" } }) .then(response => response.json()) .then(data => { console.log("API Yanıtı:", data); // API yanıtını görmek için if (data.data && data.data.length > 0) { const productId = data.data[0].id; fetchProductReviews(productId); } else { console.log("Barkod ile ürün bulunamadı."); } }) .catch(error => { console.error("Hata oluştu:", error); }); } function displayReviews(reviews) { console.log("Yorumlar:", reviews); // Yorum verilerini görmek için const reviewsContainer = document.createElement("div"); reviewsContainer.classList.add("commentTiciNewComment"); if (reviews.length === 0) { reviewsContainer.innerHTML = `

Henüz yorum yapılmamış.

`; } else { reviews.forEach(review => { const reviewElement = document.createElement("div"); reviewElement.classList.add("commentTiciNewCommentText"); reviewElement.innerHTML = `

${review.reviewerName} - Rating: ${review.rating}

${review.comment}

`; reviewsContainer.appendChild(reviewElement); }); } const parentContainer = document.querySelector(".commentTiciNewComment"); parentContainer.appendChild(reviewsContainer); }