{% extends '@App/base.html.twig' %} {% block title %} Technicians {% endblock %} {% block body %}
{% include 'AppBundle:iService//Reporting:dateForm.html.twig' %} {% for technician in technicians %} {% endfor %}
TECHNICIAN # OF JOBS ORIGINAL RO AMOUNTS FINAL RO AMOUNTS UPSELL AMOUNTS UPSELL PERCENTAGE TOTAL VIDEOS GROSS/JOB w/VIDEO GROSS/JOB w/o VIDEO NO VIDEO JOBS
{% if technician['name'] == 'Any Technician' %} NO VIDEO {% if technician['videoless_repair_orders'] >= 1 %}
{% endif %} {% else %} {{ technician['name'] }} {% endif %}
{{ technician['total_repair_orders'] }} ${{ technician['original_value'] }} ${{ technician['final_value'] }} ${{ technician['upsell_value'] }} {{ technician['upsell_percentage']|round(2, 'ceil') }}% {{ technician['total_videos'] }} {{ technician['gross_per_job_w_video'] | round(2, 'ceil') }} {{ technician['gross_per_job_wo_video'] | round(2, 'ceil') }} {{ technician['videoless_repair_orders'] }}


Total Number Jobs:

{{ cumulative_repair_orders }}

Total Initial RO Value:

${{ cumulative_original_value }}

Total Final RO Value:

${{ cumulative_final_value }}

Total Upsell Amount:

${{ cumulative_upsell_value }}

Total Upsell Percentage:

{{ cumulative_upsell_percentage|round(2, 'ceil') }}%

{% endblock %}