{% extends "base.html" %} {% block title %}Devolução - Selecionar Itens - CapeSystem{% endblock %} {% block content %}

Devolução - Selecionar Itens

Voltar à Busca
Dados da Venda
{% if venda.desconto and venda.desconto > 0 %} {% endif %} {% if venda.acrescimo and venda.acrescimo > 0 %} {% endif %}
Pedido: {{ venda.numero_pedido }}
Data: {{ venda.data_venda.strftime('%d/%m/%Y %H:%M') if venda.data_venda else '-' }}
Subtotal: R$ {{ "%.2f"|format(venda.subtotal or 0) }}
Desconto: - R$ {{ "%.2f"|format(venda.desconto) }} ({{ "%.2f"|format(desconto_percentual) }}%)
Acréscimo: + R$ {{ "%.2f"|format(venda.acrescimo) }} ({{ "%.2f"|format(acrescimo_percentual) }}%)
Total Pago: R$ {{ "%.2f"|format(venda.valor_total or 0) }}
Cliente para Receber Crédito
{% if venda.pessoa %}
{{ venda.pessoa.nome }} {% if venda.pessoa.cpf_cnpj %}
{{ venda.pessoa.cpf_cnpj }} {% endif %}
{% endif %}
Saldo atual de crédito: R$ {{ "%.2f"|format(venda.pessoa.saldo_credito_loja or 0) if venda.pessoa else '0,00' }}

Cadastrar Novo Cliente
Motivo da Devolução
CRÉDITO A GERAR
R$ 0,00
(Proporcional ao valor pago)
Itens da Venda
{% for item in itens %} {% set qtd_ja_devolvida = itens_devolvidos.get(item.id, 0) %} {% set qtd_disponivel = item.quantidade - qtd_ja_devolvida %} {% set valor_proporcional = item.valor_unitario * (1 - desconto_percentual/100 + acrescimo_percentual/100) %} {% else %} {% endfor %}
Produto Qtd Orig. Já Devol. Qtd Devolver Valor Unit. Valor Proporcional Total
{% if qtd_disponivel > 0 %} {% else %} {% endif %} {{ item.produto.nome if item.produto else 'Produto #' ~ item.produto_id }} {% if item.produto and item.produto.codigo_barras %}
{{ item.produto.codigo_barras }} {% endif %}
{{ "%.2f"|format(item.quantidade) }} {% if qtd_ja_devolvida > 0 %} {{ "%.2f"|format(qtd_ja_devolvida) }} {% else %} - {% endif %} {% if qtd_disponivel > 0 %} {% else %} 0 {% endif %} R$ {{ "%.2f"|format(item.valor_unitario) }} R$ {{ "%.2f"|format(valor_proporcional) }} {% if desconto_percentual > 0 %}
(-{{ "%.1f"|format(desconto_percentual) }}%) {% endif %} {% if acrescimo_percentual > 0 %}
(+{{ "%.1f"|format(acrescimo_percentual) }}%) {% endif %}
R$ 0,00
Nenhum item encontrado nesta venda.
Amarelo = Item parcialmente devolvido Vermelho = Item totalmente devolvido
{% endblock %}