{% extends 'base.html.twig' %} {% block stylesheets %} {% endblock %} {% block modal %} {% endblock %} {% block body %} {% set recommendedServices = 0 %}
{% if already_selected %}

You have already made your selections. Please contact your service advisor if you would like to make your selections again.

Go Back
{% else %}
APPROVED SERVICES
{% for approved in quotes %} {% if approved.default %} {% set labor = (approved.labor) %} {% set parts = approved.parts %} {% set supplies = approved.shopSupplies %} {% set labor_tax = 0 %} {% set parts_tax = 0 %} {% set supplies_tax = 0 %} {% if approved.operationCode.taxableLabor %} {% set labor_tax = (labor*(labor_tax_rate/100)) %} {% endif %} {% if approved.operationCode.taxableParts %} {% set parts_tax = (parts*(parts_supplies_tax/100)) %} {% endif %} {% if approved.operationCode.taxableShopSupplies %} {% set supplies_tax = (supplies * (parts_supplies_tax/100)) %} {% endif %} {% set price = (labor + parts + supplies)|number_format(2) %} {% set tax = (labor_tax + parts_tax + supplies_tax)|number_format(2) %}
{{ approved.description }}
${{ price }}
{% endif %} {% endfor %}
RECOMMENDED SERVICES
APPROVE
DECLINE
{% for recommended in quotes %} {% if recommended.default is empty %} {% set labor = (recommended.labor) %} {% set parts = recommended.parts %} {% set supplies = recommended.shopSupplies %} {% set labor_tax = 0 %} {% set parts_tax = 0 %} {% set supplies_tax = 0 %} {% set recommendedServices = recommendedServices + 1 %} {% if recommended.operationCode.taxableLabor %} {% set labor_tax = (labor*(labor_tax_rate/100)) %} {% endif %} {% if recommended.operationCode.taxableParts %} {% set parts_tax = (parts * (parts_supplies_tax/100)) %} {% endif %} {% if recommended.operationCode.taxableShopSupplies %} {% set supplies_tax = (supplies*(parts_supplies_tax/100)) %} {% endif %} {% set price = (labor + parts + supplies)|number_format(2) %} {% set tax = (labor_tax + parts_tax + supplies_tax)|number_format(2) %}
{{ recommended.description }}
${{ price }}
{% endif %} {% endfor %}

Total: $

{% if recommendedServices == 0 %} {# Only visible if there is no recommended services #}

There is no additional recommendations today.

Click continue below.

{% endif %}
*TOTAL INCLUDES TAXES AND FEES
{% endif %}
{% endblock %} {% block javascripts %} {% endblock %}