[FIX] account: using wizard methods instead of invoice methods

Typo during port of account.invoice to new API.

(Rebase of 02a36b6 for #1052)
This commit is contained in:
Christophe Combelles 2014-07-10 00:22:21 +03:00 committed by Olivier Dony
parent d9339e1e2d
commit 299246e2ae
1 changed files with 3 additions and 3 deletions

View File

@ -145,7 +145,7 @@ class account_invoice(models.Model):
else:
self.residual = new_value
# prevent the residual amount on the invoice to be less than 0
self.residual = max(self.residual, 0.0)
self.residual = max(self.residual, 0.0)
@api.one
@api.depends(
@ -1619,8 +1619,8 @@ class mail_compose_message(models.Model):
context.get('default_res_id') and context.get('mark_invoice_as_sent'):
invoice = self.env['account.invoice'].browse(context['default_res_id'])
invoice = invoice.with_context(mail_post_autofollow=True)
self.write({'sent': True})
self.message_post(body=_("Invoice sent"))
invoice.write({'sent': True})
invoice.message_post(body=_("Invoice sent"))
return super(mail_compose_message, self).send_mail()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: