Trace Veil Forensics Back to Website
Dashboard
Overview My Invoices Service Requests Reviews
Account
My Profile Logout

Dashboard

Welcome back!

Request Service

Trace Veil Forensics

Trace Veil Forensics

Cybersecurity Consulting Services

Kenya, East Africa

${invoice.invoice_number}

Created: ${invoice.issue_date || invoice.created_at ? new Date(invoice.issue_date || invoice.created_at).toLocaleDateString() : 'N/A'}

Due: ${invoice.due_date ? new Date(invoice.due_date).toLocaleDateString() : 'N/A'}

${invoice.status}

Bill To:

${invoice.customer_name || 'N/A'}

${invoice.customer_email || 'N/A'}

${(invoice.items || []).map(item => ` `).join('')}
Description Qty Unit Price Total
${item.description} ${item.quantity} KES ${item.unit_price.toLocaleString()} KES ${item.total.toLocaleString()}

KES ${parseFloat(invoice.total).toLocaleString()}

Total Amount Due

`); printWindow.document.close(); printWindow.print(); } function requestService(serviceId) { showRequestModal(); } function openModal() { document.getElementById('modalOverlay').classList.add('active'); } function closeModal() { document.getElementById('modalOverlay').classList.remove('active'); } function logout() { localStorage.removeItem('token'); localStorage.removeItem('user'); sessionStorage.removeItem('token'); sessionStorage.removeItem('user'); window.location.href = 'index.html'; } function getLoadingHTML() { return '

Loading...

'; } init();