{% extends 'sales/base.html' %} {% block title %}Purchase Page{% endblock %} {% block content %}

Create Purchase Order

Add Purchases

Purchases List

{% for cart in purchaseCart %} {% endfor %}
Product Quantity Price per Unit Total Actions
{{ cart.product.product_name }} {{ cart.quantity }} {{ cart.price_per_unit }} {{ cart.total_cost }}
Edit
Delete
Configure Supply Infomation to Complete Purchase
{% endblock %}