[IMP] account: changed string for fields 'ref_base_sign' & 'ref_tax_sign' in 'account.tax'

bzr revid: cha@tinyerp.com-20130320093921-irhg67f639s7xvcx
This commit is contained in:
Ajay Chauhan (OpenERP) 2013-03-20 15:09:21 +05:30
parent 7fb1818900
commit 227617dd9f
1 changed files with 2 additions and 2 deletions

View File

@ -1922,8 +1922,8 @@ class account_tax(osv.osv):
'ref_base_code_id': fields.many2one('account.tax.code', 'Refund Base Code', help="Use this code for the tax declaration."),
'ref_tax_code_id': fields.many2one('account.tax.code', 'Refund Tax Code', help="Use this code for the tax declaration."),
'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."),
'ref_base_sign': fields.float('Refund Base Code Sign', help="Usually 1 or -1."),
'ref_tax_sign': fields.float('Refund Tax Code Sign', help="Usually 1 or -1."),
'include_base_amount': fields.boolean('Included in base amount', help="Indicates if the amount of tax must be included in the base amount for the computation of the next taxes"),
'company_id': fields.many2one('res.company', 'Company', required=True),
'description': fields.char('Tax Code'),