ARÇELİK 12220 P Mobil Klima

ARÇELİK 12220 P Mobil Klima

Fiyat : ₺23.094,00(KDV Dahil)
₺2.976,56 `den başlayan taksitlerle

 

Kapasite

 

Soğutma Kapasitesi

11680 BTU/h

 

 

Voltaj

220-240

 

 

 

Hava Kalitesi

 

2 Yönlü Otomatik Hava Kontrolü (Yukarı-Aşağı)

Var

 

 

Nem Alma

Var

 

 

 

Enerji Verimliliği

 

Enerji Sınıfı-Isıtma

A+

 

 

Soğutucu Akışkan

R290

 

 

 

Konfor

 

Gösterge

LED Gösterge

 

 

Çoklu Programlama Özelliği (Timer)

24 Saat

 

 

Rahat Uyku (Sleep Mode)

Var

 

 

İç Ünite Soğutma Çalışma Aralığı(°C)

17-35℃

 

 

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); }