This commit is contained in:
2026-02-02 16:23:27 +01:00
parent 10aaff4cc8
commit 5b32a402a6
3 changed files with 3 additions and 3 deletions

View File

@@ -476,7 +476,7 @@ class ShipmentIn(metaclass=PoolMeta):
for m in self.incoming_moves:
if m.lot:
lines.append(
f"Lot nb: {m.lot.lot_number} | "
f"Lot nb: {m.lot.lot_name} | "
f"Net Qt: {m.lot.get_current_quantity()} {m.lot.lot_unit.symbol} | "
f"Gross Qt: {m.lot.get_current_gross_quantity()} {m.lot.lot_unit.symbol}"
)