From f6e7e468e59632029e4203de478a0a155435c70f Mon Sep 17 00:00:00 2001 From: Jose Zambudio Date: Mon, 19 Jun 2023 09:31:21 +0200 Subject: [PATCH] [FIX] Missing dependency `account_reconciliation_widget` --- account_partner_reconcile/__manifest__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/account_partner_reconcile/__manifest__.py b/account_partner_reconcile/__manifest__.py index 2541fb84..88c64767 100644 --- a/account_partner_reconcile/__manifest__.py +++ b/account_partner_reconcile/__manifest__.py @@ -8,7 +8,10 @@ "author": "ForgeFlow, Odoo Community Association (OCA)", "website": "https://github.com/OCA/account-reconcile", "license": "AGPL-3", - "depends": ["account"], + "depends": [ + "account", + "account_reconciliation_widget", + ], "data": ["views/res_partner_view.xml"], "installable": True, }