[IMP] account: Changed the Tax name and code which is generated from template dynamically because of account name constrain on account.tax model.

bzr revid: ron@tinyerp.com-20111129123420-oto8m9ug8tobje9s
This commit is contained in:
ron@tinyerp.com 2011-11-29 18:04:20 +05:30
parent 6933af637c
commit ccb8bb9a1f
1 changed files with 1 additions and 1 deletions

View File

@ -3246,7 +3246,7 @@ class wizard_multi_charts_accounts(osv.osv_memory):
for tax_type, value in tax_dict.items():
tax_name = tax_type == 'sale' and 'TAX Received' or 'TAX Paid'
if value > 0.0:
tax_string = _('TAX %s%%') % (value)
tax_string = _('TAX %s %s%%') % (tax_type, value)
new_tax_code_temp = obj_tax_code_template.create(cr, uid, {'name': tax_string, 'code': tax_string}, context=context)
new_paid_tax_code_temp = obj_tax_code_template.create(cr, uid, {'name': _('%s %s%%') % (tax_name, value), 'code': _('%s %s%%') % (tax_name, value)}, context=context)
sales_tax_temp = obj_tax_temp.create(cr, uid, {