This commit is contained in:
oscar alvarez 2023-03-28 17:55:37 -05:00
parent 224b2c6666
commit d2b0011070
2 changed files with 4 additions and 1 deletions

View File

@ -746,6 +746,7 @@ class Folio(ModelSQL, ModelView):
"pending_total",
"plan",
"guests",
"charges",
"booking.contact",
"booking.party.name",
"booking.number",
@ -923,7 +924,9 @@ class Folio(ModelSQL, ModelView):
"""
res = []
res.append(self.get_total_accommodation())
print('total_accommodation > > > > ', self.get_total_accommodation())
res.append(self.get_total_products())
print(' > > > > ', self.get_total_products())
res = round(sum(res), Folio.total_amount.digits[1])
return res

View File

@ -1,5 +1,5 @@
[tryton]
version=6.0.77
version=6.0.78
depends:
party
company