[FIX]:the translation issue for the partner ledger report

bzr revid: ksa@tinyerp.com-20130405071233-01dk1hmyvy6jxd7x
This commit is contained in:
kirti savalia (OpenERP) 2013-04-05 12:42:33 +05:30
parent bd77ee8cf2
commit 45c6e55b4a
1 changed files with 3 additions and 3 deletions

View File

@ -268,11 +268,11 @@ class third_party_ledger(report_sxw.rml_parse, common_report_header):
def _get_partners(self):
if self.result_selection == 'customer':
return 'Receivable Accounts'
return _('Receivable Accounts')
elif self.result_selection == 'supplier':
return 'Payable Accounts'
return _('Payable Accounts')
elif self.result_selection == 'customer_supplier':
return 'Receivable and Payable Accounts'
return _('Receivable and Payable Accounts')
return ''
def _sum_currency_amount_account(self, account, form):