Company: {{ company.currentCompany }}
Does this information look correct?
Address: {{ formData.address }}
Contact:
{{
selectedContact
? `${selectedContact.firstName} ${selectedContact.lastName}`
: ""
}}
Email:
{{ selectedContact?.emailId || "N/A" }}
Items:
-
{{ item.itemName }} - Qty: {{ item.qty || 0 }} - Total: ${{
((item.qty || 0) * (item.rate || 0)).toFixed(2)
}}
Total: ${{ totalCost.toFixed(2) }}
Requires Half Payment: {{ formData.requiresHalfPayment ? 'Yes' : 'No' }}
⚠️ Warning: After sending this estimate, it will be locked and cannot be edited.