{% extends 'admin/layout.html.twig' %} {% block title %}Inventory Dashboard - KitscoApp{% endblock %} {% block page_title %}Inventory Dashboard{% endblock %} {% block content %} {# Quick Actions #}
Receive Stock Stock Receipts All Movements Suppliers
{# Stats Cards #}

Total Inventory Value

{{ totalInventoryValue|money }} TZS

Products In Stock

{{ productsInStock }}

Out of Stock

{{ outOfStockProducts|length }}

{# Low Stock Alerts #}

Low Stock Alerts

Threshold: 10 units
{% for product in lowStockProducts[:10] %} {% else %} {% endfor %}

{{ product.name }}

{{ product.stockQuantity }} units View

All products are well stocked

{# Recent Activity #}

Recent Activity

View All
{% for movement in recentMovements %} {% else %} {% endfor %}

{{ movement.product.name }}

{{ movement.createdAt|date('d/m/Y H:i') }}

{{ movement.type.label }} {{ movement.formattedDelta }}

No recent movements

{# Recent Receipts #} {% if recentReceipts|length > 0 %}

Recent Stock Receipts

View All
{% for receipt in recentReceipts %} {% endfor %}
Receipt # Product Qty Landed Cost/Unit
{{ receipt.receiptNumber }}

{{ receipt.purchaseDate|date('d/m/Y') }}

{{ receipt.product.name }} +{{ receipt.quantity }} {{ receipt.landedCostPerUnit|money }}
{% endif %} {% endblock %}