[FIX]GOLEM Resource Account : with no income and product name, we should handle unicode characters

This commit is contained in:
Fabien BOURGEOIS 2018-04-16 17:55:32 +02:00
parent 6d163a7a93
commit 5e27186939
1 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class GolemResourceReservation(models.Model):
if not account_id:
raise ValidationError(
_('There is no income account defined for this product: "{}"'
_(u'There is no income account defined for this product: "{}"'
'. You have to configure it on the product form.'.format(product.name)))
@api.multi
@ -117,6 +117,7 @@ class GolemResourceReservation(models.Model):
'res_id': reservation.invoice_id.id,
'view_mode': 'form',
'view_id': self.env.ref('account.invoice_form').id}
@api.multi
def add_to_invoice(self):
""" Add reservation to existing invoice"""