[IMP] asset: asset category form view imp

bzr revid: qdp-launchpad@openerp.com-20110527145049-simvh4evilqjmg07
This commit is contained in:
Quentin (OpenERP) 2011-05-27 16:50:49 +02:00
parent 1827adbbb6
commit 65d41c8c0a
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ class account_asset_category(osv.osv):
'journal_id': fields.many2one('account.journal', 'Journal', required=True),
'company_id': fields.many2one('res.company', 'Company', required=True),
'method': fields.selection([('linear','Linear'),('progressif','Progressive')], 'Computation method', required=True),
'method_delay': fields.integer('During (interval)'),
'method_period': fields.integer('Depre. all (period)'),
'method_delay': fields.integer('Number of Depreciation'),
'method_period': fields.integer('Period Length'),
'method_progress_factor': fields.float('Progressif Factor'),
'method_time': fields.selection([('delay','Delay'),('end','Ending Period')], 'Time Method', required=True),
'prorata':fields.boolean('Prorata Temporis', help='Indicates that the accounting entries for this asset have to be done from the purchase date instead of the first January'),