diff --git a/account_financial_report/report/open_items.py b/account_financial_report/report/open_items.py
index f1039151..05d5e4a0 100644
--- a/account_financial_report/report/open_items.py
+++ b/account_financial_report/report/open_items.py
@@ -155,6 +155,9 @@ class OpenItemsReportCompute(models.TransientModel):
self.ensure_one()
if report_type == 'xlsx':
report_name = 'a_f_r.report_open_items_xlsx'
+ elif report_type == 'qweb-html':
+ report_name = 'account_financial_report.' \
+ 'report_open_items_html_qweb'
else:
report_name = 'account_financial_report.' \
'report_open_items_qweb'
diff --git a/account_financial_report/report/templates/open_items.xml b/account_financial_report/report/templates/open_items.xml
index 193c2d73..f0b22a1b 100644
--- a/account_financial_report/report/templates/open_items.xml
+++ b/account_financial_report/report/templates/open_items.xml
@@ -11,6 +11,10 @@
+
+
+
+
diff --git a/account_financial_report/reports.xml b/account_financial_report/reports.xml
index 44af5026..e2b68993 100644
--- a/account_financial_report/reports.xml
+++ b/account_financial_report/reports.xml
@@ -71,7 +71,7 @@
model="report_open_items"
string="Open Items"
report_type="qweb-html"
- name="account_financial_report.report_open_items_qweb"
+ name="account_financial_report.report_open_items_html_qweb"
file="account_financial_report.report_open_items_html"
/>
diff --git a/account_financial_report/tests/test_open_items.py b/account_financial_report/tests/test_open_items.py
index 5456c135..5f4269d6 100644
--- a/account_financial_report/tests/test_open_items.py
+++ b/account_financial_report/tests/test_open_items.py
@@ -17,6 +17,9 @@ class TestOpenItems(a_t_f_c.AbstractTestForeignCurrency):
def _getQwebReportName(self):
return 'account_financial_report.report_open_items_qweb'
+ def _getHtmlReportName(self):
+ return 'account_financial_report.report_open_items_html_qweb'
+
def _getXlsxReportName(self):
return 'a_f_r.report_open_items_xlsx'