Forget register Configuration Default Account

From changeset-86c28d3cf290
This commit is contained in:
Raimon Esteve 2017-12-13 00:15:29 +01:00
parent ba2e2c05eb
commit 7242f96b23
1 changed files with 6 additions and 6 deletions

View File

@ -4,18 +4,18 @@
from trytond.model import fields
from trytond.pool import Pool, PoolMeta
__all__ = ['Configuration', 'AccountTemplate', 'Account',
'CreateChartAccount', 'CreateChart', 'UpdateChartStart', 'UpdateChart']
__all__ = ['Configuration', 'ConfigurationDefaultAccount', 'AccountTemplate',
'Account', 'CreateChartAccount', 'CreateChart', 'UpdateChartStart',
'UpdateChart']
class Configuration:
__metaclass__ = PoolMeta
__name__ = 'account.configuration'
default_account_code_digits = fields.MultiValue(
fields.Integer(
"Account Code Digits",
help='Number of digits to be used for all non-view accounts.'))
default_account_code_digits = fields.MultiValue(fields.Integer(
'Account Code Digits',
help='Number of digits to be used for all non-view accounts.'))
force_digits = fields.Boolean('Force Digits',
help='If marked it won\'t be allowed to create a non-view account'
' with a diferent number of digits than the number used on the '