{% extends "core/base.html" %} {% load currency_filters %} {% load static %} {% block title %}Suppliers - SwiftPOS{% endblock %} {% block topbar_title %}Suppliers{% endblock %} {% block content %}

Vendor Management

Manage suppliers, purchase orders, and track balances
Add New Supplier
{% if suppliers %}
{{ suppliers|length }}
Active Suppliers
{% endif %}
{% for s in suppliers %}
{{ s.name }}
{% if s.contact_name %}
{{ s.contact_name }}
{% endif %} {% if s.phone %}
{{ s.phone }}
{% endif %} {% if not s.contact_name and not s.phone %}
No contact info
{% endif %}
Purchased
{% money s.total_purchased %}
Paid
{% money s.total_paid %}
Outstanding Balance
{% money s.balance %}
{% if s.balance > 0 %}
{% with pct=s.total_paid|default:0 %}
{% endwith %}
{% else %}
{% endif %}
{% empty %}
No Suppliers Found

Add your first supplier to begin creating purchase orders and tracking inventory restocks.

Add Supplier
{% endfor %}
{% endblock %}