{% extends "layouts/base.html" %} {% block title %} Lots {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
{% include 'includes/navigation.html' %}

Listes des lots Pour l'article : {{article.nom_article}}

{{article.quantitee_non_declarer_comme_lot}} Quantité non encore déclarée comme lot

{% if article.quantitee_non_declarer_comme_lot > 0 %}
{% csrf_token %}
{% endif %}
{% for lot in lots %} {% if lot.numero_lot %} {% else %} {% endif %} {% if lot.upc %} {% else %} {% endif %} {% endfor %}
Numéro de lot UPC Qté Date d'arriv Prix achat Action
{{lot.numero_lot}}
{% if lot.date_d_expiration <= now %} ce lot est périmé {% endif %}
déclaré comme entrée {{lot.upc}}/ {{lot.quantitee |default:'/'}} {{lot.date_arrivage |default:'/'}}
{{lot.infosachat.prix_de_revient}}
{% include 'includes/footer.html' %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}