{% extends "base.html" %} {% block title %}Adjustment Requests{% endblock %} {% block content %}

Stock Adjustment Requests

New Request
{% if current_status or current_branch %} Clear {% endif %}
{% for req in requests %} {% empty %} {% endfor %}
ProductLocationQtyReasonStatusRequested By
{{ req.product }} {{ req.location|default:"-" }} {% if req.location %}({{ req.location.branch.name|default:"-" }}){% endif %} {{ req.quantity }} {{ req.get_reason_display }} {{ req.get_status_display }} {{ req.requested_by|default:"-" }} {% if req.status == 'pending' %} Review {% endif %}
No requests.
{% include "partials/pagination.html" with page_obj=requests %}
{% endblock %}