From 111b137e7cdc8df7cd61de92ddf37256dcabb937 Mon Sep 17 00:00:00 2001 From: Thomas Binsfeld Date: Wed, 20 Jan 2021 16:02:53 +0100 Subject: [PATCH] [FIX] base_report_to_printer: add dependency on mail On existing installations, the cron creation fails because of the activity_user_type required field. Adding a dependency on the mail module solved the problem. --- base_report_to_printer/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_report_to_printer/__manifest__.py b/base_report_to_printer/__manifest__.py index de84530..9aee206 100644 --- a/base_report_to_printer/__manifest__.py +++ b/base_report_to_printer/__manifest__.py @@ -14,7 +14,7 @@ " Open for Small Business Ltd", "website": "https://github.com/OCA/report-print-send", "license": "AGPL-3", - "depends": ["web"], + "depends": ["mail", "web"], "data": [ "data/printing_data.xml", "security/security.xml",