{% extends "base.html" %} {% block title %} {{ supplier.name }}'s profile {% endblock %} {% block content %}
Phone No : {{ supplier.phone }}
Email Id : {{ supplier.email }}
GSTIN No : {{ supplier.gstin }}
Address:
{{ supplier.address|linebreaks }}
| Bill No | Stocks Purchased | Quantity Purchased | Total Purchased Price | Purchased Date | Options |
|---|---|---|---|---|---|
{{ purchase.billno }} |
{% 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 |