diff --git a/addons/l10n_do/models/account_move.py b/addons/l10n_do/models/account_move.py
index 81e249a5c3be1..4adffa990f770 100644
--- a/addons/l10n_do/models/account_move.py
+++ b/addons/l10n_do/models/account_move.py
@@ -166,7 +166,9 @@ def _get_l10n_do_amounts(self, company_currency=False):
amount_field = company_currency and "balance" or "price_subtotal"
sign = -1 if (company_currency and self.is_inbound()) else 1
- itbis_tax_group = self.env.ref("l10n_do.group_itbis", False)
+ itbis_tax_group = self.env.ref(
+ "account.%s_group_itbis" % self.company_id.id, False
+ )
taxed_move_lines = self.line_ids.filtered("tax_line_id")
itbis_taxed_move_lines = taxed_move_lines.filtered(
diff --git a/addons/l10n_do/views/report_invoice.xml b/addons/l10n_do/views/report_invoice.xml
index fea395e65e49b..9296b94ca665c 100644
--- a/addons/l10n_do/views/report_invoice.xml
+++ b/addons/l10n_do/views/report_invoice.xml
@@ -181,25 +181,6 @@