window.onafterprint = function() { // ارسال درخواست برای بهروزرسانی وضعیت فاکتور fetch('/update-invoice-status', { method: 'POST', body: JSON.stringify({ status: 'printed' }) }).then(response => response.json()) .then(data => { alert('فاکتور با موفقیت چاپ شد.'); }); };