{% extends 'base.html' %} {% load static %} {% load custom_tags_and_filters %} {% load stockroom_custom_tags_and_filters %} {% block title %}Stockroom Withdrawals{% endblock %} {% block extrahead %} {% endblock %} {% block content %}

Stockroom Withdrawals

{% button style="margin-left: 15px" type="export" onclick="$('#csv_export').val('true');this.form.submit();" value="Export" %}



Withdrawals

{% for cw in consumable_withdraws %} {% empty %} {% endfor %}
User Item Price Qty Project Account Date Fulfilled Date of Request Order Fulfilled By
{{ cw.customer }} {{ cw.consumable }} {% if rates and rates|get_item:cw.consumable.name %}{{ rates|get_item:cw.consumable.name|safe }}{% endif %} {{ cw.quantity }} {{ cw.project }} {{ cw.project.account.name }} {{ cw.date }} {{ cw|get_request_date }} {{ cw.merchant.first_name }} {{ cw.merchant.last_name }}
{% if start_date or end_date %} No requests for stockroom items exist {% if start_date and end_date %} between {{ start_date }} and {{ end_date }} {% elif start_date %} after {{ start_date }} {% else %} before {{ end_date }} {% endif %} . {% endif %}
{% endblock %}