[REF]account:Add constraint on account.account and account.account.template for type

bzr revid: ara@tinyerp.com-20110111051952-8fscm1f9ia1mq2gh
This commit is contained in:
ARA (OpenERP) 2011-01-11 10:49:52 +05:30
parent 1af8ebcaac
commit 1058ae9c8b
1 changed files with 2 additions and 2 deletions

View File

@ -428,7 +428,7 @@ class account_account(osv.osv):
_constraints = [
(_check_recursion, 'Error ! You can not create recursive accounts.', ['parent_id']),
(_check_type, 'Internal type of parent account must be view.', ['parent_id']),
(_check_type, 'You cannot create a account! \nMake sure if the account has children it should be type "View"! ', ['parent_id']),
]
_sql_constraints = [
('code_company_uniq', 'unique (code,company_id)', 'The code of the account must be unique per company !')
@ -2313,7 +2313,7 @@ class account_account_template(osv.osv):
_check_recursion = check_cycle
_constraints = [
(_check_recursion, 'Error ! You can not create recursive account templates.', ['parent_id']),
(_check_type, 'Internal type of parent account template must be view.', ['parent_id']),
(_check_type, 'You cannot create a account template! \nMake sure if the account template has children it should be type "View"! ', ['parent_id']),
]