Selamat Datang, {{ session['username'] }}!
Monitoring data penjualan produk secara real-time
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
Visualisasi Clustering Penjualan
Rincian Hasil Analisa Produk
Download Report (Excel)
| Nama Mitra |
Nama Produk |
Harga Asli | Diskon | Qty Terjual |
Total (Nett) |
Status Cluster |
Aksi |
{% for p in produk %}
| {{ p.nama_mitra }} |
{{ p.nama_produk }} |
Rp {{ "{:,.0f}".format(p.harga_asli or 0) }} | -Rp {{ "{:,.0f}".format(p.diskon or 0) }} | {{ p.stok_terjual }} |
Rp {{ "{:,.0f}".format(p.total_penjualan_rp) }} |
{{ p.status }}
|
|
{% endfor %}