Hello AFINET Team,
Great news! A customer has accepted their quotation and is ready to proceed with the order.
✓ Quotation Accepted
${{ number_format($quotation->total_amount, 2) }}
Reference: {{ $quotation->reference }}
Customer Information
| Name: | {{ $customer->name }} |
| Email: | {{ $customer->email }} |
| Phone: | {{ $customer->phone }} |
| Customer ID: | {{ $customer->id }} |
Order Details
| Package: | {{ $quotation->package->name ?? 'Custom Package' }} |
| Service Address: | {{ $quotation->service_address ?? 'Not specified' }} |
| Monthly Price: | ${{ number_format($quotation->monthly_price, 2) }} |
| Installation Fee: | ${{ number_format($quotation->installation_fee, 2) }} |
| Extension Cost: | ${{ number_format($quotation->extension_cost, 2) }} |
| Equipment Cost: | ${{ number_format($quotation->equipment_cost, 2) }} |
| Total Amount: | ${{ number_format($quotation->total_amount, 2) }} |
| Accepted On: | {{ $quotation->responded_at ? $quotation->responded_at->format('F j, Y g:i A') : now()->format('F j, Y g:i A') }} |
Installation Preferences
@foreach($quotation->installation_preferences as $key => $value)
{{ ucfirst(str_replace('_', ' ', $key)) }}: {{ $value }}
@endforeach
@endif
@endforeach
Next Steps:
- Create Sales Order in Odoo (if not auto-created)
- Generate Invoice for the customer
- Schedule Installation based on customer preferences
- Coordinate with Technical Team for site preparation
- Keep Customer Updated on progress
⚠️ Action Required: Please process this order within 24 hours and contact the customer to confirm installation schedule.