{% extends "admin/custom/base.html" %}
{% block title %} Inventarios y Facturación{% endblock %}
{% block branding %}
{% endblock %}
{% block nav-global %}{% endblock %}
{% load widget_tweaks %}
{% block content %}
CANTIDAD DE PRODUCTOS ({{ productos|length }}) |
Detalle de Reposición de Inventario
Categoría |
Departamento |
{% if imagen is True > 0 %}Foto | {% endif %}
Código |
Producto |
Descripción |
Ubicación |
Stock Minimo |
Stock |
{% if otra_moneda is True > 0 %}Precio {{ moneda_cambio }} | Total {{ moneda_cambio }} | {% endif %}
Precio {{ moneda }} |
Total {{ moneda }} |
{% if porcentaje_gan is True > 0 %}{% if otra_moneda is True > 0 %}Costo {{ moneda_cambio }} | {% endif %}{% endif %}
{% if porcentaje_gan is True > 0 %}Costo {{ moneda }} | {% endif %}
Última compra |
Proveedor |
Exento |
Bloqueado |
{% for p in productos %}
{{ p.categoria }} |
{{ p.departamento }} |
{% if imagen is True > 0 %} | {% endif %}
{{ p.codigo }} |
{{ p.producto }} |
{{ p.descripcion }} |
{{ p.ubicacion }} |
{{ p.stock_minimo }} |
{{ p.stock }} |
{% if otra_moneda is True > 0 %}{{ p.precio_moneda_cambio }} | {{ p.total_precio_mc }} | {% endif %}
{{ p.precio }} |
{{ p.total_precio }} |
{% if porcentaje_gan is True > 0 %}{% if otra_moneda is True > 0 %} {{ p.costo_moneda_cambio }} | {% endif %}{% endif %}
{% if porcentaje_gan is True > 0 %} {{ p.costo }} | {% endif %}
{{ p.fecha_compra }} |
{{ p.proveedor }} |
{{ p.exento_iva }} |
{{ p.bloqueado }} |
{% empty %}
No se encontró información |
{% endfor %}
{% endblock %}