[Usability] Now tells the user in the error message which account triggers the error

bzr revid: alexis@via.ecp.fr-20111207175445-dav09ybjdhzpilyl
This commit is contained in:
Alexis de Lattre 2011-12-07 18:54:45 +01:00
parent 255cfb94b0
commit deff44edbd
1 changed files with 2 additions and 2 deletions

View File

@ -581,14 +581,14 @@ class account_move_line(osv.osv):
lines = self.browse(cr, uid, ids, context=context)
for l in lines:
if l.account_id.type == 'view':
return False
raise osv.except_osv(_('Error :'), _('You can not create move line on view account %s %s') % (l.account_id.code, l.account_id.name))
return True
def _check_no_closed(self, cr, uid, ids, context=None):
lines = self.browse(cr, uid, ids, context=context)
for l in lines:
if l.account_id.type == 'closed':
return False
raise osv.except_osv(_('Error :'), _('You can not create move line on closed account %s %s') % (l.account_id.code, l.account_id.name))
return True
def _check_company_id(self, cr, uid, ids, context=None):