From f2ffe0d1ffaeb8238e4be7427c72a0f39f5fcbf7 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Wed, 8 Oct 2025 23:27:48 -0400 Subject: [PATCH] [FIX] remove warning missing licence and force auto_install False --- bemade_payslip_done_as_not_paid/__manifest__.py | 2 +- customer_itch_cycle/__manifest__.py | 1 + customer_product_code_search/__manifest__.py | 2 +- partner_equipment_applications/__manifest__.py | 2 +- test_caldav_sync_appointments/__manifest__.py | 3 ++- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/bemade_payslip_done_as_not_paid/__manifest__.py b/bemade_payslip_done_as_not_paid/__manifest__.py index 38e3122..112cdf9 100644 --- a/bemade_payslip_done_as_not_paid/__manifest__.py +++ b/bemade_payslip_done_as_not_paid/__manifest__.py @@ -27,5 +27,5 @@ 'depends': ['hr_payroll'], 'data': ['views/hr_payslip_views.xml'], 'installable': True, - 'auto_install': True, + 'auto_install': False, } diff --git a/customer_itch_cycle/__manifest__.py b/customer_itch_cycle/__manifest__.py index f8417fe..685c204 100644 --- a/customer_itch_cycle/__manifest__.py +++ b/customer_itch_cycle/__manifest__.py @@ -6,6 +6,7 @@ 'author': 'Your Name', 'category': 'Sales Management', 'description': "Manage customer itch cycles by product for proactive sales engagement.", + 'license': "LGPL-3", 'data': [ 'views/itch_cycle_product_partner_view.xml', 'views/res_partner_view.xml', diff --git a/customer_product_code_search/__manifest__.py b/customer_product_code_search/__manifest__.py index 7b1d60d..719dd32 100644 --- a/customer_product_code_search/__manifest__.py +++ b/customer_product_code_search/__manifest__.py @@ -16,6 +16,6 @@ ], "data": [], "installable": True, - "auto_install": True, + "auto_install": False, "license": "Other proprietary", } diff --git a/partner_equipment_applications/__manifest__.py b/partner_equipment_applications/__manifest__.py index 5bc56b9..732f765 100644 --- a/partner_equipment_applications/__manifest__.py +++ b/partner_equipment_applications/__manifest__.py @@ -32,5 +32,5 @@ ], "assets": {}, "installable": True, - "auto_install": True, + "auto_install": False, } diff --git a/test_caldav_sync_appointments/__manifest__.py b/test_caldav_sync_appointments/__manifest__.py index f6abb5b..ab380f5 100644 --- a/test_caldav_sync_appointments/__manifest__.py +++ b/test_caldav_sync_appointments/__manifest__.py @@ -8,7 +8,7 @@ Test CalDAV Sync Appointments Integration ========================================= -This module contains tests for the integration between CalDAV sync and the +This module contains tests for the integration between CalDAV sync and the Appointments app. It verifies that appointment events are properly handled during CalDAV synchronization operations. @@ -20,6 +20,7 @@ This is a test-only module and should not be installed in production. 'caldav_sync', 'appointment', ], + 'license': "LGPL-3", 'installable': True, 'auto_install': False, 'application': False,