From b2fa9816efa3ff2ba834a53c8faff112f10dc3ae Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Fri, 2 Jan 2009 10:03:46 +0100 Subject: [PATCH] invoice bzr revid: fp@tinyerp.com-20090102090346-8ghpu3ffp2nhl22c --- addons/account/invoice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/account/invoice.py b/addons/account/invoice.py index bb4fde85ad6..198ef5f25a8 100644 --- a/addons/account/invoice.py +++ b/addons/account/invoice.py @@ -859,7 +859,7 @@ class account_invoice(osv.osv): else: self.pool.get('account.move.line').reconcile_partial(cr, uid, line_ids, 'manual', context) - # Update the stored value + # Update the stored value (fields.function), so we write to trigger recompute self.pool.get('account.invoice').write(cr, uid, ids, {}, context=context) return True account_invoice()