{# views/product/details.twig #} {% extends 'layouts/base.twig' %} {% block title %}{{ translations.order }}{% endblock %} {% block page_heading %}

{{ translations.order }}

{% if errors is not empty %}
{% endif %} {% endblock %} {% block content %} {# === SEKCJA FILTRÓW === #}

{{ translations.search }}

{# === SEKCJA WYNIKÓW === #}

{{ translations.realised_orders }}

{{ translations.view_complaints }}
{% for order in realised_orders %} {% endfor %}
{{ translations.supplier_name }} {{ translations.order_key }} {{ translations.order_date }} {{ translations.acceptance_date }} {{ translations.approximate_value }}
{{ order.getSupplierName() }} {{ order.getOrderKey() }} {{ order.getOrderDate()|date("d-m-Y") }} {{ order.getDeliveredOnDate()|date("d-m-Y") }} {{ order.getApproximateValueNet() ~ constant('APP_CURRENCY_SYMBOL') }}
{# === MODAL SZCZEGÓŁÓW === #} {% endblock %} {% block scripts %} {% endblock %}