// HTML içindeki script bölümü
let stock = 5;
const apiURL = "https://script.google.com/macros/s/AKfycbw3gVoAL5HJt7FLcMRfQmNXjI5g4RMplcey3UA8cN_4zynrowTXkG5zJKudiY8EUSsgZw/exec";
function buyItem() {
if (stock > 0) {
// Rastgele kod üret
const chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
let randomCode = "DEV-";
for(let i=0; i<8; i++) {
randomCode += chars.charAt(Math.floor(Math.random() * chars.length));
}
// Google Sheets'e kaydet
fetch(`${apiURL}?action=add&code=${randomCode}`)
.then(response => {
stock--;
document.getElementById("stockCount").innerText = stock;
document.getElementById("finalCode").innerText = randomCode;
document.getElementById("codeSection").style.display = "block";
})
.catch(err => alert("Hata: " + err));
} else {
alert("Stok tükendi!");
}
}