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