{% extends "admin/custom/base.html" %}
{% block title %} Inventarios y Facturación{% endblock %}
{% block branding %}
{% endblock %}
{% block nav-global %}{% endblock %}
{% load widget_tweaks %}
{% block content %}
|
En Banco |
En Sistema |
Gastos |
-- |
{{ egreso_gasto }} |
Inversión |
-- |
{{ egreso_inversion }} |
Ingresos |
{{ ingreso_banco }} |
{{ ingreso_sistema }} |
Egresos |
{{ egreso_banco }} |
{{ egreso_sistema }} |
Relación/Utilidad |
{{ utilidad_banco }} |
{{ utilidad_sistema }} |
Relación "Ganancia/Pérdida" por productos vendidos.
{% for gp in total_gp %}
{% for g_p in gp %}
{{ g_p }} |
{% endfor %}
{% endfor %}
PRODUCTO |
CANTIDAD |
ING. BRUTO |
COSTO |
COMISIÓN |
IMP. |
GANANCIA |
{% if divisa is 1 %}
ING. MC |
COSTO MC |
COMISIÓN MC |
IMP. MC |
GANANCIA MC |
{% endif %}
GANAN. % |
{% for gp in gane_perdi %}
{% for g_p in gp %}
{{ g_p }} |
{% endfor %}
{% empty %}
No se encontró información |
{% endfor %}
Relación "Gastos" por productos comprados.
{% for tg in total_gastos %}
{% for g_p in tg %}
{{ g_p }} |
{% endfor %}
{% endfor %}
PRODUCTO |
CANTIDAD |
GASTOS |
{% if divisa is 1 %}
GASTOS MC |
{% endif %}
{% for gp in gastos_prod %}
{% for g_p in gp %}
{{ g_p }} |
{% endfor %}
{% empty %}
No se encontró información |
{% endfor %}
Relación "Inversión" por productos comprados.
{% for tinv in total_inversion %}
{% for g_p in tinv %}
{{ g_p }} |
{% endfor %}
{% endfor %}
PRODUCTO |
CANTIDAD |
INVERSIÓN |
{% if divisa is 1 %}
INVERSIÓN MC |
{% endif %}
{% for gp in inversion %}
{% for g_p in gp %}
{{ g_p }} |
{% endfor %}
{% empty %}
No se encontró información |
{% endfor %}
{% endblock %}