Browse Source

[FIX] - log message for invoice creation only when there is an invoice

pull/414/head
sbejaoui 5 years ago
parent
commit
237f154084
  1. 14
      contract/models/contract.py

14
contract/models/contract.py

@ -453,13 +453,15 @@ class ContractContract(models.Model):
even if their next invoicing date is in the future. even if their next invoicing date is in the future.
""" """
invoice = self._recurring_create_invoice() invoice = self._recurring_create_invoice()
self.message_post(
body=_(
'Contract manually invoiced: '
'<a href="#" data-oe-model="%s" data-oe-id="%s">Invoice</a>'
if invoice:
self.message_post(
body=_(
'Contract manually invoiced: '
'<a href="#" data-oe-model="%s" data-oe-id="%s">Invoice'
'</a>'
)
% (invoice._name, invoice.id)
) )
% (invoice._name, invoice.id)
)
return invoice return invoice
@api.multi @api.multi

Loading…
Cancel
Save