{% extends "base.html" %} {% block title %}Caixa{% endblock %} {% block content %}
| Pedido | Cliente | Data Fechamento | Valor | Ações |
|---|---|---|---|---|
| {{ v.numero_pedido }} | {{ v.get_cliente_nome() }} | {% if v.data_fechamento %}{{ v.data_fechamento.strftime('%d/%m/%Y %H:%M') }}{% else %}-{% endif %} | R$ {{ "%.2f"|format(v.valor_total) }} | Ver |
Nenhuma venda para receber no momento.
{% endif %}| Pedido | Cliente | Data Recebimento | Valor | Ações |
|---|---|---|---|---|
| {{ v.numero_pedido }} | {{ v.get_cliente_nome() }} | {% if v.data_recebimento %}{{ v.data_recebimento.strftime('%d/%m/%Y %H:%M') }}{% else %}-{% endif %} | R$ {{ "%.2f"|format(v.valor_total) }} | Ver |
Nenhuma venda recebida recentemente.
{% endif %}| Pedido | Cliente | Data Fechamento | Valor | Ações |
|---|---|---|---|---|
| {{ v.numero_pedido }} | {{ v.get_cliente_nome() }} | {% if v.data_fechamento %}{{ v.data_fechamento.strftime('%d/%m/%Y %H:%M') }}{% else %}-{% endif %} | R$ {{ "%.2f"|format(v.valor_total) }} | Ver |
Nenhuma venda para receber no momento.
{% endif %}| Pedido | Cliente | Data Recebimento | Valor | Ações |
|---|---|---|---|---|
| {{ v.numero_pedido }} | {{ v.get_cliente_nome() }} | {% if v.data_recebimento %}{{ v.data_recebimento.strftime('%d/%m/%Y %H:%M') }}{% else %}-{% endif %} | R$ {{ "%.2f"|format(v.valor_total) }} | Ver |
Nenhuma venda recebida recentemente.
{% endif %}| Data Abertura | Data Fechamento | Responsável | Valor Inicial | Entradas | Saídas | Saldo | Ações |
|---|---|---|---|---|---|---|---|
| {{ c.data_abertura.strftime('%d/%m/%Y %H:%M') }} | {% if c.data_fechamento %} {{ c.data_fechamento.strftime('%d/%m/%Y %H:%M') }} {% else %} Aberto {% endif %} | {{ c.usuario.username if c.usuario and c.usuario.username else (c.usuario.email if c.usuario else '-') }} | R$ {{ "%.2f"|format(c.valor_inicial) }} | R$ {{ "%.2f"|format(c.total_entradas()) }} | R$ {{ "%.2f"|format(c.total_saidas()) }} | R$ {{ "%.2f"|format(c.calcular_saldo()) }} | Ver |
Nenhum histórico de caixa nos últimos 30 dias.
{% endif %}