+
+
+
diff --git a/account_financial_report/report/templates/general_ledger.xml b/account_financial_report/report/templates/general_ledger.xml
index be1004c3..2656e016 100644
--- a/account_financial_report/report/templates/general_ledger.xml
+++ b/account_financial_report/report/templates/general_ledger.xml
@@ -17,13 +17,14 @@
-
General Ledger
+
General Ledger - -
-
-
+
+
+
+
-
diff --git a/account_financial_report/report/templates/journal_ledger.xml b/account_financial_report/report/templates/journal_ledger.xml
index 8c895074..c321a6d4 100644
--- a/account_financial_report/report/templates/journal_ledger.xml
+++ b/account_financial_report/report/templates/journal_ledger.xml
@@ -12,12 +12,14 @@
- Journal Ledger
-
-
-
+
Journal Ledger - -
+
+
+
+
+
diff --git a/account_financial_report/report/templates/layouts.xml b/account_financial_report/report/templates/layouts.xml
index 704c7aad..630d7dee 100644
--- a/account_financial_report/report/templates/layouts.xml
+++ b/account_financial_report/report/templates/layouts.xml
@@ -2,16 +2,6 @@
-
diff --git a/account_financial_report/report/templates/open_items.xml b/account_financial_report/report/templates/open_items.xml
index be5c7d49..5f1c0269 100644
--- a/account_financial_report/report/templates/open_items.xml
+++ b/account_financial_report/report/templates/open_items.xml
@@ -14,13 +14,13 @@
-
-
- Open Items
+ Open Items - -
-
-
+
+
+
+
diff --git a/account_financial_report/report/templates/trial_balance.xml b/account_financial_report/report/templates/trial_balance.xml
index bb00109f..c2cdf593 100644
--- a/account_financial_report/report/templates/trial_balance.xml
+++ b/account_financial_report/report/templates/trial_balance.xml
@@ -15,93 +15,95 @@
-
-
Trial Balance
-
-
+
+
Trial Balance - -
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
+
+
+
-
+
+
+
+
+
+
-
+
+
diff --git a/account_financial_report/report/templates/vat_report.xml b/account_financial_report/report/templates/vat_report.xml
index f1c1c150..2291e3f3 100644
--- a/account_financial_report/report/templates/vat_report.xml
+++ b/account_financial_report/report/templates/vat_report.xml
@@ -12,15 +12,15 @@
+ VAT Report - -
+
-
VAT Report
-
diff --git a/account_financial_report/report/trial_balance_xlsx.py b/account_financial_report/report/trial_balance_xlsx.py
index 57bf27c6..647e8491 100644
--- a/account_financial_report/report/trial_balance_xlsx.py
+++ b/account_financial_report/report/trial_balance_xlsx.py
@@ -10,8 +10,10 @@ class TrialBalanceXslx(models.AbstractModel):
_name = 'report.a_f_r.report_trial_balance_xlsx'
_inherit = 'report.account_financial_report.abstract_report_xlsx'
- def _get_report_name(self):
- return _('Trial Balance')
+ def _get_report_name(self, objects):
+ report = objects
+ return _('Trial Balance - %s - %s') % (
+ report.company_id.name, report.company_id.currency_id.name)
def _get_report_columns(self, report):
if not report.show_partner_details:
diff --git a/account_financial_report/report/vat_report_xlsx.py b/account_financial_report/report/vat_report_xlsx.py
index 1418057c..3d69ffeb 100644
--- a/account_financial_report/report/vat_report_xlsx.py
+++ b/account_financial_report/report/vat_report_xlsx.py
@@ -8,8 +8,10 @@ class VATReportXslx(models.AbstractModel):
_name = 'report.a_f_r.report_vat_report_xlsx'
_inherit = 'report.account_financial_report.abstract_report_xlsx'
- def _get_report_name(self):
- return _('VAT Report')
+ def _get_report_name(self, objects):
+ report = objects
+ return _('VAT Report - %s - %s') % (
+ report.company_id.name, report.company_id.currency_id.name)
def _get_report_columns(self, report):
return {
diff --git a/account_financial_report/static/description/index.html b/account_financial_report/static/description/index.html
index ae324c29..8ef2593f 100644
--- a/account_financial_report/static/description/index.html
+++ b/account_financial_report/static/description/index.html
@@ -448,6 +448,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
Akim Juillerat <akim.juillerat@camptocamp.com>
Alexis de Lattre <alexis@via.ecp.fr>
Mihai Fekete <feketemihai@gmail.com>
+
Miquel Raïch <miquel.raich@eficent.com>
Much of the work in this module was done at a sprint in Sorrento, Italy in
April 2016.