{% extends 'Common/baseAdminPannel.html.twig' %} {% if form is defined %} {% form_theme form 'backend/form/percentageRange.twig' %} {% endif %} {% block title %} {{'Nueva'|trans}} {{ entityName|trans }} {% endblock %} {% block body %} {% if error is defined %}
{{ error }}
{% else %} {{ form_start(form, {'attr':{'data-remote':'true', 'data-method':'POST', 'data-url':form.vars.action}}) }}
{{ form_row(form.concessionarie) }}

{{ form_row(form.active) }}
{{ form_row(form.percentageRanges) }}
{{ '*' }}{{ 'Los rangos hacen referencia a los porcientos de comisión que paga el concesionario (por concepto de venta de contrato) en dependencia del porcentaje del pago inicial' }}

{{ "Configuración de venta procesable" }}

{{ form_row(form.processablePercentage) }} {{ '*' }} {{ 'Porcentaje sobre el monto comisionable' }}

{{ form_row(form.additionalProcessableAmount) }} {{ '*' }} {{ 'Monto fijo adicional al porcentaje' }}

{{ "Porcentajes de comisiones por venta procesable por rol" }}

{{ form_row(form.linerCloserPercentages) }} {{ '*' }} {{ '2 porcentajes separados por dos puntos (' }} {{ ':' }} {{ '). Ejemp. "5' }}{{ ':' }}{{ '5"' }}
{{ form_row(form.linerCloserCloserSupportPercentages) }} {{ '*' }} {{ '3 porcentajes separados por dos puntos (' }} {{ ':' }} {{ '). Ejemp. "5' }}{{ ':' }}{{ '4.5' }}{{ ':' }}{{ '5"' }}
{{ form_row(form.salesManagerPercentage) }}
{{ form_row(form.telemarketingManagerPercentage) }}
{{ form_row(form.publicRelationshipPercentage) }}

{{ "Configuración para bonos por ventas acumuladas" }}

{{ form_row(form.hasWeeklyBonus) }}
{{ form_row(form.hasMonthlyBonus) }}
{% if form.weeklyBonusGoal is defined %}
{{ form_row(form.weeklyBonusGoal) }}
{{ form_row(form.weeklyBonusCommission) }}
{% else %}
{% endif %} {% if form.monthlyBonusGoal is defined %}
{{ form_row(form.monthlyBonusGoal) }}
{{ form_row(form.monthlyBonusCommission) }}
{% endif %}

{{ "Configuración para comisiones de publicistas" }}

{{ form_row(form.managerTotalBallotsGoal) }}
{{ form_row(form.managerTotalBallotsCommission) }}
{{ form_end(form) }} {% endif %} {% endblock %}