{% extends 'layout.twig' %} {% block title %}Inventory Overview - {{ parent() }}{% endblock %} {% block content %}

Inventory Overview

{% if stockLevels is empty %}
No drink types found in inventory. Add a drink type to get started.
{% else %}
Current Stock Levels
{% for item in stockLevels %} {% endfor %}
Drink Type Current Stock Desired Stock Difference Status Actions
{{ item.drinkType.name }} {{ item.currentStock }} {{ item.drinkType.desiredStock }} {% set difference = item.currentStock - item.drinkType.desiredStock %} {% if difference < 0 %} {{ difference }} {% elseif difference > 0 %} +{{ difference }} {% else %} 0 {% endif %} {% if item.currentStock < item.drinkType.desiredStock %} Low Stock {% elseif item.currentStock == item.drinkType.desiredStock %} Optimal {% else %} Excess {% endif %}
Inventory Summary
{% set totalItems = stockLevels|length %} {% set lowStockCount = 0 %} {% set optimalCount = 0 %} {% set excessCount = 0 %} {% for item in stockLevels %} {% if item.currentStock < item.drinkType.desiredStock %} {% set lowStockCount = lowStockCount + 1 %} {% elseif item.currentStock == item.drinkType.desiredStock %} {% set optimalCount = optimalCount + 1 %} {% else %} {% set excessCount = excessCount + 1 %} {% endif %} {% endfor %}
Total Drink Types: {{ totalItems }}
Low Stock: {{ lowStockCount }}
Optimal Stock: {{ optimalCount }}
Excess Stock: {{ excessCount }}
{% endif %} {% endblock %}