[IMP] account : Improved the code

bzr revid: mdi@tinyerp.com-20111209095222-43eo3pulebwdtapy
This commit is contained in:
Divyesh Makwana (Open ERP) 2011-12-09 15:22:22 +05:30
parent eb69ddcce0
commit c2aae9e46c
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class account_period_close(osv.osv_memory):
for form in self.read(cr, uid, ids, context=context):
if form['sure']:
for id in context['active_ids']:
account_move_ids = account_move_obj.search(cr, uid, [('period_id', '=', id)], context=context)
account_move_ids = account_move_obj.search(cr, uid, [('period_id', '=', id), ('state', '=', "draft")], context=context)
if account_move_ids:
raise osv.except_osv(_('Invalid action !'), _('In order to close a period, you must first post related journal items.'))