minor fix _get_charge_line

This commit is contained in:
Elvis 2023-07-24 10:09:27 -05:00
parent 057ca42a08
commit 8b5e174267
1 changed files with 1 additions and 1 deletions

View File

@ -630,7 +630,7 @@ class Booking(Workflow, ModelSQL, ModelView):
def _get_charge_line(cls, cha, bk):
description = cha.product.template.name
if cha.order:
description.append(cha.order)
description = cha.description + ' | ' + cha.order
if cha.kind == 'accommodation':
description = cha.description + ' | ' + str(cha.date_service)