bzr revid: fp@tinyerp.com-20090102090346-8ghpu3ffp2nhl22c
This commit is contained in:
Fabien Pinckaers 2009-01-02 10:03:46 +01:00
parent 330e145035
commit b2fa9816ef
1 changed files with 1 additions and 1 deletions

View File

@ -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()