This commit is contained in:
2026-03-09 20:35:42 +01:00
parent 840f03e5d8
commit aff4459942

View File

@@ -568,7 +568,7 @@ class SaleLine(metaclass=PoolMeta):
if self.price_components:
for pc in self.price_components:
if pc.price_index:
pricing_text += 'ON ' + pc.price_index.price_desc
pricing_text += 'ON ' + pc.price_index.price_desc + ' ' + (pc.price_index.price_period.description if pc.price_index.price_period else '')
return pricing_text
@fields.depends('product')