📦 Inventory Management

📚 Arafat Online Shop

Wartarka Guud: $0.00
).value; if(parseFloat(total) <= 0){ return alert("Fadlan dooro buug!"); } if(!/^61\d{7,8}$/.test(phone)){ return alert("Geli number sax ah!"); } document.getElementById("confirmAmt").innerText = total; document.getElementById("payModal").style.display = "flex"; } /* PAYMENT */ function processPayment(){ let total = document.getElementById("grandTotal").innerText; document.getElementById("confirmState").style.display = "none"; document.getElementById("loadingState").style.display = "block"; document.getElementById("modalAmount").innerText = total; setTimeout(()=>{ document.getElementById("loadingState").style.display = "none"; document.getElementById("successState").style.display = "block"; let ussd = `*789*666517*${Math.round(total)}#`; window.location.href = `tel:${encodeURIComponent(ussd)}`; },3000); } /* CLOSE */ function closeModal(){ document.getElementById("payModal").style.display = "none"; } /* LOAD */ window.addEventListener("load",refreshDropdowns);