This commit is contained in:
2026-02-02 17:33:40 +01:00
parent a4f0a08469
commit 33eeabf5e1
2 changed files with 3 additions and 3 deletions

View File

@@ -479,8 +479,8 @@ class ShipmentIn(metaclass=PoolMeta):
lines.append(
"<p>"
f"<strong>Lot nb:</strong> {m.lot.lot_name} | "
f"<strong>Net Qt:</strong> {m.lot.get_current_quantity()} {m.lot.lot_unit.symbol} | "
f"<strong>Gross Qt:</strong> {m.lot.get_current_gross_quantity()} {m.lot.lot_unit.symbol}"
f"<strong>Net Qt:</strong> {m.lot.get_current_quantity()} {m.lot.lot_unit_line.symbol} | "
f"<strong>Gross Qt:</strong> {m.lot.get_current_gross_quantity()} {m.lot.lot_unit_line.symbol}"
"</p>"
)