{% extends 'D2BillingBundle::layout.html.twig' %} {% set mode = 'edit' %} {% set cur_sym = d2_config('currency_symbol') %} {% block head_style_extra %} {% endblock head_style_extra %} {% block head_script_extra %} {% endblock head_script_extra %} {% block page_header %}

{% for k, v in app.request.query %} {% if k|lower not in ['search', 'category'] %} {% endif %} {% endfor %}
Account Pricing - {{ entity.displayName}}
{% endblock page_header %} {% block content %}
All prices are excluding VAT
{% for item in data %} {% endfor %}
Sales Code Item Description Item Category Default Price Customer Price Type Price Increase New Price
{{ item.line }}. {% if is_granted('ROLE_INV_ITEM_VIEW') %} {{ item.inv.salesCode }} {% else %} {{ item.inv.salesCode }} {% endif %} {% if is_granted('ROLE_INV_ITEM_VIEW') %} {{ item.inv.description }} {% else %} {{ item.inv.description }} {% endif %} {% if is_granted('ROLE_INV_CAT_VIEW') %} {{ item.inv.salesCategory }} {% else %} {{ item.inv.salesCategory }} {% endif %} {{ cur_sym }} {{ item.inv.basePrice|number_format(2, '.', ',') }} {{ cur_sym }} {{ item.inv.price|number_format(2, '.', ',') }}
{% endblock %}