diff --git a/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountModule_getAccountListForTrialBalance.xml b/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountModule_getAccountListForTrialBalance.xml index 09f23c720a67b795763fb4a3edd88e0c34b076ef..1e2c3ccd9a8d7b882205e053a0e3be2f3bda49fb 100644 --- a/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountModule_getAccountListForTrialBalance.xml +++ b/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountModule_getAccountListForTrialBalance.xml @@ -333,7 +333,7 @@ def getNodeTitleAndId(node_relative_url):\n node = traverse(node_relative_url)\n return node_title_and_id_cache.setdefault(node_relative_url,\n ( node.getUid(),\n - node.getTitle(),\n + node.getTranslatedTitle(),\n node.Account_getGapId(gap_root=selected_gap),\n node.getProperty(\'string_index\'),\n node))\n diff --git a/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getFormattedTitle.xml b/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getFormattedTitle.xml index bc1b30ae0e5cc01426574cf09cf26ac1f09ef704..1e47483d6522f5bc068e9a2bf18378c569cc6177 100644 --- a/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getFormattedTitle.xml +++ b/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/Account_getFormattedTitle.xml @@ -54,7 +54,7 @@ account = context\n \n gap_id = account.Account_getGapId(gap_root=gap_root)\n -title = account.getTitle()\n +title = account.getTranslatedTitle()\n \n if gap_id:\n title = "%s - %s" % (gap_id, title)\n diff --git a/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountingTransactionModule_getAccountingLineReportLineList.xml b/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountingTransactionModule_getAccountingLineReportLineList.xml index ce1c7bc0dc81e954c53272172e8f466aca1ac2ac..fe1b7544dec0c05c14ad70d2db80651eb983496f 100644 --- a/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountingTransactionModule_getAccountingLineReportLineList.xml +++ b/bt5/erp5_accounting/SkinTemplateItem/portal_skins/erp5_accounting/AccountingTransactionModule_getAccountingLineReportLineList.xml @@ -173,7 +173,7 @@ for delivery in delivery_list:\n node_account_type_title = \'\'\n node_financial_section_title = \'\'\n if node is not None:\n - node_title = node.getTitle()\n + node_title = node.getTranslatedTitle()\n node_account_type_title = node.getAccountTypeTranslatedTitle()\n node_financial_section_title = \\\n node.getFinancialSectionTranslatedTitle()\n @@ -224,7 +224,7 @@ for delivery in delivery_list:\n node_account_type_title = \'\'\n node_financial_section_title = \'\'\n if node is not None:\n - node_title = node.getTitle()\n + node_title = node.getTranslatedTitle()\n node_account_type_title = node.getAccountTypeTranslatedTitle()\n node_financial_section_title = \\\n node.getFinancialSectionTranslatedTitle()\n