templates/ComponentInventory/index.html.twig line 1

  1. {% extends 'layout.html.twig' %}
  2. {% trans_default_domain 'ComponentInventoryItem' %}
  3. {% import 'Document/macro.html.twig' as document %}
  4. {% block title %}{{ 'ui.componentInventory' | trans }}{% endblock %}
  5. {% block body %}
  6. {{ 'ui.componentInventory' | trans }}

  • {{ 'ui.create_short' | trans }}
  • Excel Batch
  • {{ ('ui.' ~ (hideZeroQuantity ? 'show' : 'hide') ~ 'ZeroQuantity') | trans }}
  • Export to Excel
  • {{ 'ui.eventLog' | trans }}
  • {% for item in items %}
  • {% endfor %}
  • {{ 'property.code' | trans }} {{ 'property.description' | trans }} {{ 'property.quantity' | trans }} {{ 'property.unitPrice' | trans }} {{ 'property.totalValue' | trans }}
  • {{ item.type == constant('App\\Entity\\ComponentInventoryItem::TYPE_COMPONENT') ? 'C' : 'SI' }}
  • {{ item.code }}
  • {{ item.description }} {{ item.quantity }} {{ document.currency(item.unitPrice, '€', 5) }} {{ document.currency(item.totalValue, '€', 5) }}
  • No items match the search. Click the Add Item button to add a new item with the code .
  • {% endblock %}
  • {% block stylesheets %}
  • {% endblock %}
  • {% block javascripts %}
  • {{ parent() }}
  • {% endblock %}