main #7

Merged
admin merged 620 commits from main into dev 2026-03-29 13:03:25 +00:00
Showing only changes of commit 265b41b206 - Show all commits

View File

@@ -561,11 +561,11 @@ class SaleLine(metaclass=PoolMeta):
@property
def get_pricing_text(self):
pricing_text = ' ON '
pricing_text = ''
if self.price_components:
for pc in self.price_components:
if pc.price_index:
pricing_text += ' ' + pc.price_index.description
pricing_text += 'ON ' + pc.price_index.price_desc
return pricing_text
@fields.depends('product')