{% extends "base.html" %} {% load widget_tweaks %} {% block title %} Purchases List {% endblock title %} {% block content %}
| Bill No | Supplier | Stocks Purchased | Quantity Purchased | Total Purchased Price | Purchased Date | Options |
|---|---|---|---|---|---|---|
{{ purchase.billno }} |
{% if purchase.supplier.is_deleted %}
{{ purchase.supplier }} {% else %} {{ purchase.supplier }} {% endif %} Ph No : {{ purchase.supplier.phone }} |
{% for item in purchase.get_items_list %} {{ item.stock.name }} {% endfor %} |
{% for item in purchase.get_items_list %} {{ item.quantity }} {% endfor %} |
{{ purchase.get_total_price }} | {{ purchase.time.date }} | View Bill Delete Bill |