سامانه مدیریت مشتری

سامانه مدیریت مشتری

لوگو

افزودن و مدیریت مشتریان

ثبت تراکنش‌ها

صورت وضعیت مشتری
'); printWindow.document.write(content.innerHTML); printWindow.document.write(''); printWindow.document.close(); printWindow.focus(); printWindow.print(); printWindow.close(); } function clearForm() { if (confirm('آیا از پاک کردن فرم مطمئن هستید؟')) { document.getElementById('transactionsContainer').innerHTML = `
`; document.getElementById('previewSection').style.display = 'none'; } } // تولید تاریخ شمسی خودکار function getPersianDate() { const now = new Date(); const options = { year: 'numeric', month: '2-digit', day: '2-digit' }; const formatter = new Intl.DateTimeFormat('fa-IR', options); const parts = formatter.formatToParts(now); const year = parts.find(p => p.type === 'year')?.value; const month = parts.find(p => p.type === 'month')?.value; const day = parts.find(p => p.type === 'day')?.value; return `${year}/${month}/${day}`; } // بارگذاری اولیه window.onload = function () { updateClientList(); };
keyboard_arrow_up