{% extends 'admin/layouts/base.html.twig' %} {% set active = 'app_admin_commission_setting' %} {% set breadcrumbs = [ { 'link': path('app_admin_dashboard'), 'title': 'Home' }, { 'title':'Commission Management', }, { 'link': path('app_admin_commission_setting'), 'title': 'Commmission', }, { 'title': 'Edit' } ]%} {% block title %}{{ title }}{% endblock %} {% block content %} {% if commissionSetting %}

Commission


Multi-level commission? How many tiers?
Tier-wise commission distribution
%
Total commission: 0.00%

Rules


{#
#} {# When#} {# #} {# rule groups pass#} {#
#}
{% for key, group in commissionSetting.rules %} {% if key starts with 'rule_group_' %}
{#
#} {# This group is a "pass" when#} {# #} {# of the following rules are true.#} {#
#}
{% if commissionSettingsProducts %} {% endif %}
Products
{% for roleKey, ruleRow in group %} {% if roleKey starts with 'rule_' %}
{% endif %} {% endfor %}
Add a product
{#
#} {# Add another group #} {#
#} {#
#} {# Remove this group #} {#
#}
{% endif %} {% endfor %}
{% endif %} {% endblock %} {% block javascripts %} {% endblock %}