[IMP] account: made little change

bzr revid: cha@tinyerp.com-20130313105709-hg2wzl87q3io6189
This commit is contained in:
Ajay Chauhan (OpenERP) 2013-03-13 16:27:09 +05:30
parent c8cd315848
commit 8670be1fde
1 changed files with 2 additions and 2 deletions

View File

@ -2799,14 +2799,14 @@ class account_tax_template(osv.osv):
#
'base_code_id': fields.many2one('account.tax.code.template', 'Base Code', help="Use this code for the tax declaration."),
'tax_code_id': fields.many2one('account.tax.code.template', 'Tax Code', help="Use this code for the tax declaration."),
'base_sign': fields.float('Base Sign Code', help="Usually 1 or -1."),
'base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."),
'tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."),
# Same fields for refund invoices
'ref_base_code_id': fields.many2one('account.tax.code.template', 'Refund Base Code', help="Use this code for the tax declaration."),
'ref_tax_code_id': fields.many2one('account.tax.code.template', 'Refund Tax Code', help="Use this code for the tax declaration."),
'ref_base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."),
'ref_base_sign': fields.float('Base Sign Code', help="Usually 1 or -1."),
'ref_tax_sign': fields.float('Tax Sign Code', help="Usually 1 or -1."),
'include_base_amount': fields.boolean('Include in Base Amount', help="Set if the amount of tax must be included in the base amount before computing the next taxes."),
'description': fields.char('Internal Name'),