diff --git a/__init__.py b/__init__.py
index f88059b176b68c16a1a1024c635a43d555e9229c..62012537cb5d1b42e6fffb7434dc53e5c483a938 100755
--- a/__init__.py
+++ b/__init__.py
@@ -3,5 +3,4 @@
 
 from . import controllers
 from . import models
-from . import report
 from . import wizard
diff --git a/report/__init__.py b/report/__init__.py
deleted file mode 100755
index 7b5fa1cac97787c466a30f5185a9cc5c65994f75..0000000000000000000000000000000000000000
--- a/report/__init__.py
+++ /dev/null
@@ -1,4 +0,0 @@
-# © 2022 Le Filament (<http://www.le-filament.com>)
-# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-
-from . import scop_contribution_report
diff --git a/report/scop_contribution_report.py b/report/scop_contribution_report.py
deleted file mode 100644
index 2fed4b43a0ae60c723e3785a5d16feb752f58563..0000000000000000000000000000000000000000
--- a/report/scop_contribution_report.py
+++ /dev/null
@@ -1,44 +0,0 @@
-# © 2022 Le Filament (<http://www.le-filament.com>)
-# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-
-from odoo import models
-
-
-class ScopContributionReport(models.Model):
-    _inherit = "scop.contribution.report"
-
-    def _select_invoice(self):
-        select_str = super(ScopContributionReport, self)._select_invoice()
-        select_str = """
-            SELECT
-                CAST(i.year AS VARCHAR),
-                i.type_contribution_id,
-                i.partner_id,
-                SUM(i.amount_total_signed) AS amount_called,
-                SUM(i.amount_total_signed - i.residual_company_signed) AS amount_paid,
-                SUM(i.residual_company_signed) AS amount_due,
-                (
-                    CASE WHEN max(refund.id) IS NOT NULL THEN true ELSE FALSE END OR
-                    CASE WHEN max(refund_b.id) IS NOT NULL THEN true ELSE FALSE END
-                ) AS is_loss
-        """
-        return select_str
-
-    def _from_invoice(self):
-        from_str = super(ScopContributionReport, self)._from_invoice()
-        from_str += """
-            LEFT JOIN
-                scop_bordereau b ON i.bordereau_id = b.id
-            LEFT JOIN
-                scop_bordereau refund_b ON b.id = refund_b.refund_id
-        """
-        return from_str
-
-    def _where_invoice(self):
-        where_str = super(ScopContributionReport, self)._where_invoice()
-        where_str += "AND (i.bordereau_id IS NULL OR b.is_regul = false OR b.is_regul IS NULL)"
-        return where_str
-
-    # ------------------------------------------------------
-    # Computed fields
-    # ------------------------------------------------------