[FIX] account.move.line: do not create writeoff entries when called from fy closing wizard

bzr revid: xal@openerp.com-20120306161040-ycv7viqwtfn1lbob
This commit is contained in:
Xavier ALT 2012-03-06 17:10:40 +01:00
parent f6c3cd9bb7
commit 9cf4637657
1 changed files with 6 additions and 1 deletions

View File

@ -827,7 +827,12 @@ class account_move_line(osv.osv):
if r[0][1] != None:
raise osv.except_osv(_('Error'), _('Some entries are already reconciled !'))
if (not currency_obj.is_zero(cr, uid, account.company_id.currency_id, writeoff)) or \
if context.get('fy_closing'):
# We don't want to generate any write-off when being called from the
# wizard used to close a fiscal year (and it doesn't give us any
# writeoff_acc_id).
pass
elif (not currency_obj.is_zero(cr, uid, account.company_id.currency_id, writeoff)) or \
(account.currency_id and (not currency_obj.is_zero(cr, uid, account.currency_id, currency))):
if not writeoff_acc_id:
raise osv.except_osv(_('Warning'), _('You have to provide an account for the write off/exchange difference entry !'))