{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Wholesalers & Suppliers{% endblock %} {% block body_class %}restock-page{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Wholesalers & Suppliers

Back to Restock Planning | Admin

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

Add Wholesaler / Industry

Link Supplier To Product

Saved Product Offers

{% if offers %}
{% for offer in offers %} {% endfor %}
SupplierProductUnit CostQualityReliabilityLead Time
{{ offer.supplier_name }} {{ offer.product_name }} {{ currency_symbol }}{{ "%.2f"|format(offer.unit_cost or 0) }} {{ offer.quality_score }} {{ offer.reliability_score }} {{ offer.lead_time_days }} day(s)
{% else %}

No supplier product offers saved yet.

{% endif %}
{% endblock %}