{% extends "base.html" %} {% block title %}Dashboard - Mago4 Demo{% endblock %} {% set status_badge = {'overdue':'badge-danger','due_soon':'badge-warning','open':'badge-info','paid':'badge-success'} %} {% set status_label = {'overdue':'Scaduta','due_soon':'In scadenza','open':'Aperta','paid':'Saldata'} %} {% block content %}
Cruscotto Aziendale
{% if stats.overdue_pay_count or stats.overdue_recv_count %}
notification_important Attenzione: hai {% if stats.overdue_pay_count %}{{ stats.overdue_pay_count }} pagamenti scaduti (€ {{ "%.2f"|format(stats.overdue_pay_amount) }}){% endif %} {% if stats.overdue_pay_count and stats.overdue_recv_count %} e {% endif %} {% if stats.overdue_recv_count %}{{ stats.overdue_recv_count }} incassi scaduti (€ {{ "%.2f"|format(stats.overdue_recv_amount) }}){% endif %}. Vai allo scadenzario »
{% endif %}
Pagamenti Scaduti
payments
€ {{ "{:,.0f}".format(stats.overdue_pay_amount) }}
{{ stats.overdue_pay_count }} partite
Incassi Scaduti
request_quote
€ {{ "{:,.0f}".format(stats.overdue_recv_amount) }}
{{ stats.overdue_recv_count }} partite
Ordini da Evadere
local_shipping
{{ stats.sales_to_fulfill }}
Articoli da Ordinare
production_quantity_limits
{{ stats.low_stock_count }}

event_note Scadenze Imminenti (30 giorni)

Vedi tutto »
{% for s in upcoming %} {% set st = sched_status(s) %} {% endfor %} {% if not upcoming %}{% endif %}
ScadenzaTipoSoggettoImportoStato
Nessuna scadenza nei prossimi 30 giorni

checklist Cose da Fare

{% for t in todos %}
{{ t.icon }}
{{ t.text }}
{% if t.amount %}
€ {{ "%.2f"|format(t.amount) }}
{% endif %}
{{ t.action }}
{% endfor %} {% if not todos %}
check_circleTutto sotto controllo!
Nessuna attività urgente.
{% endif %}

account_balance_wallet Previsione di Cassa (30 gg)

south_west Incassi previsti
€ {{ "{:,.2f}".format(cashflow.inflow) }}
north_east Pagamenti previsti
− € {{ "{:,.2f}".format(cashflow.outflow) }}
Saldo previsto
€ {{ "{:,.2f}".format(cashflow.net) }}

credit_card Controllo Fido Clienti

{% for c in credit_exceeded %} {% endfor %} {% if not credit_exceeded %}{% endif %}
ClienteFidoEsposizioneStato
{{ c.name }} € {{ "%.0f"|format(c.credit_limit) }} € {{ "%.0f"|format(c.balance) }} warning Superato
Nessun cliente ha superato il fido

description Ultimi Documenti di Vendita

{% for i in last_invoices %} {% endfor %}
DataNumeroClienteTotaleStato
Fatturato Emesso
€ {{ "{:,.0f}".format(stats.invoiced_total) }}
Crediti Aperti
€ {{ "{:,.0f}".format(stats.open_recv_amount) }}
Debiti Aperti
€ {{ "{:,.0f}".format(stats.open_pay_amount) }}
Valore Magazzino
€ {{ "{:,.0f}".format(stats.warehouse_value) }}
{% endblock %}