{% extends "base.html" %} {% block title %}{{ movement.doc_no }} - Mago4 Demo{% endblock %} {% block window_tabs %} swap_vert Movimenti inventory {{ movement.doc_no }} {% endblock %} {% block content %}
Movimento di Magazzino — {{ movement.doc_no }}
{% if not movement.posted %} {% endif %} logout
{{ movement.doc_no }}
{{ movement.doc_date.strftime("%d/%m/%Y") }}
{{ movement.posting_date.strftime("%d/%m/%Y") }}
{{ movement.storage }}
{{ movement.reason_code }} — {{ movement.reason_description }}
{% if movement.sign.value == 'load' %}add Carico (+) {% else %}remove Scarico (−){% endif %}
{{ movement.custsupp_name or '—' }}
{% if movement.posted %}check Confermato {% else %}Bozza{% endif %}

list Righe Movimento

{% for l in movement.lines %} {% endfor %}
#ArticoloDescrizioneUMQ.tàValore Unit.ImportoLottoUbicazione
{{ l.line_no }} {{ l.item_code }} {{ l.description }} {{ l.uom }} {{ '+' if movement.sign.value == 'load' else '−' }}{{ "%.2f"|format(l.quantity) }} € {{ "%.2f"|format(l.unit_value) }} € {{ "%.2f"|format(l.line_amount) }} {{ l.lot or '—' }} {{ l.location or '—' }}
{% if movement.notes %}

notes Note

{{ movement.notes }}
{% endif %}
VALORE TOTALE MOVIMENTO
€ {{ "%.2f"|format(movement.total_amount) }}
{% endblock %}