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

bzr revid: cha@tinyerp.com-20130320092042-dyzb4rl3w2hi4c7e
This commit is contained in:
Ajay Chauhan (OpenERP) 2013-03-20 14:50:42 +05:30
parent 494e8130bb
commit 7fb1818900
1 changed files with 2 additions and 2 deletions

View File

@ -2836,8 +2836,8 @@ class account_tax_template(osv.osv):
'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 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('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'),
'type_tax_use': fields.selection([('sale','Sale'),('purchase','Purchase'),('all','All')], 'Tax Use In', required=True,),