This commit is contained in:
2026-03-09 20:32:51 +01:00
parent 039b278757
commit 840f03e5d8

View File

@@ -286,7 +286,7 @@ class Sale(metaclass=PoolMeta):
for line in self.lines:
if line.lots:
nb_bale += sum([l.lot_qt for l in line.lots if l.lot_type == 'physic'])
return text_bale + str(nb_bale)
return text_bale + str(int(nb_bale))
@property
def report_price(self):