Propuesta Energética Personalizada

OLE Consulting - Expertos en Ahorro Energético

Su Asesor Energético

Nombre: {{ commercial.first_name }} {{ commercial.last_name }}

Email: {{ commercial.email }}

Datos del Cliente

Nombre: {{ invoice_data.get('client_name', 'N/A') }}

Email: {{ invoice_data.get('client_email', 'N/A') }}

Teléfono: {{ invoice_data.get('client_phone', 'N/A') }}

CUPS: {{ invoice_data.get('cups', 'N/A') }}

Consumo Anual: {{ invoice_data.get('annual_consumption', 'N/A') }} kWh

Coste Actual: {{ "%.2f"|format(invoice_data.get('current_annual_cost', 0)) }}€/año

Planes Recomendados

{% for plan in proposal_data.selected_plans %}

{{ plan.get('tariff_name', 'N/A') }}

{{ plan.get('provider', 'N/A') }}

AHORRO ANUAL: {{ "%.0f"|format(plan.get('annual_savings', 0)) }}€
NUEVO COSTE MENSUAL: {{ "%.2f"|format(plan.get('monthly_cost', 0)) }}€

Precios de Energía (€/kWh)

{% for period, price in plan.get('energy_prices', {}).items() %} {% endfor %}
Período Precio
{{ period }} {{ "%.6f"|format(price) }}

Precios de Potencia (€/kW/día)

{% for period, price in plan.get('power_prices', {}).items() %} {% endfor %}
Período Precio
{{ period }} {{ "%.6f"|format(price) }}

Permanencia: {{ plan.get('permanence', 'Sin permanencia') }}

Tipo de Tarifa: {{ plan.get('tariff_type', 'Fija') }}

{% endfor %}