{% extends '_include/base.html.twig' %} {% block title %}WMS Transactions{% endblock %} {% block breadcrumbs %} {% endblock %} {% block page_title %}WMS Transactions{% endblock %} {% block page_actions %} Back to Dashboard {% endblock %} {% block content %}
{% if transactions is empty %}
No WMS transactions found.
{% else %} {% for transaction in transactions %} {% endfor %}
ID Type License Plate Source Location Target Location Quantity Performed By Correlation ID Created At
{{ transaction.id }} {{ transaction.type }} {{ transaction.licensePlate.lpnNumber|default('N/A') }} {{ transaction.sourceLocation.name|default('N/A') }} {{ transaction.targetLocation.name|default('N/A') }} {{ transaction.quantity|default('N/A') }} {{ transaction.performedBy.email|default('N/A') }} {{ transaction.correlationId|default('N/A')|slice(0, 20) }}{% if transaction.correlationId|default('')|length > 20 %}...{% endif %} {{ transaction.created_at|date('Y-m-d H:i')|default('N/A') }}
{% endif %}
{% if pagination is defined %} {% include '_include/_pagination.html.twig' %} {% endif %}
{% endblock %}