{% extends "base.html" %} {% block title %}Contagem - {{ inventario.codigo }} - CapeServer{% endblock %} {% block content %}
| Código | Produto | UN | Sistema | Contagem | Diferença | Status |
|---|---|---|---|---|---|---|
{{ item.codigo_produto or '-' }} |
{{ item.nome_produto[:40] }}{% if item.nome_produto|length > 40 %}...{% endif %} | {{ item.unidade or 'UN' }} | {{ "%.3f"|format(item.quantidade_sistema) }} | {% if item.contado %} {% if item.diferenca > 0 %} +{{ "%.3f"|format(item.diferenca) }} {% elif item.diferenca < 0 %} {{ "%.3f"|format(item.diferenca) }} {% else %} OK {% endif %} {% else %} - {% endif %} | {% if item.contado %} {% else %} {% endif %} | |
|
Nenhum item encontrado com os filtros atuais |
||||||