From 1678449f66967930517c7212c2a434e8550ff3bf Mon Sep 17 00:00:00 2001 From: Alejandro Santillan Date: Fri, 4 Aug 2023 20:50:41 +0000 Subject: [PATCH 1/4] [FIX] odoo_picking_order_line_views: Warning raised by typo in manifest key: "license" The word 'license' can be written "licence" too but odoo expects "license". The fallowing warning was being raised, even when the module was not installed. WARNING ? odoo.modules.module: Missing `license` key in manifest for 'odoo_picking_order_line_views', defaulting to LGPL --- odoo_picking_order_line_views/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odoo_picking_order_line_views/__manifest__.py b/odoo_picking_order_line_views/__manifest__.py index 96bb4ba090..4b608e8329 100644 --- a/odoo_picking_order_line_views/__manifest__.py +++ b/odoo_picking_order_line_views/__manifest__.py @@ -27,7 +27,7 @@ 'maintainer': 'Cybrosys Techno Solutions', 'website': "https://www.cybrosys.com", 'category': 'Sales', - 'licence': 'LGPL-3', + 'license': 'LGPL-3', 'depends': ['base', 'sale', 'stock', 'sale_management', 'purchase'], 'data': [ 'views/in_operation_line_views.xml', From e069dbf070d6307146e06829d7bed6241f05da94 Mon Sep 17 00:00:00 2001 From: Alejandro Santillan Date: Fri, 4 Aug 2023 20:57:09 +0000 Subject: [PATCH 2/4] [FIX] odoo_sale_order_line_views: Warning raised by typo in manifest key: "license" The word 'license' can be written "licence" too but odoo expects "license". The fallowing warning was being raised, even when the module was not installed. WARNING ? odoo.modules.module: Missing `license` key in manifest for 'odoo_sale_order_line_views', defaulting to LGPL --- odoo_sale_order_line_views/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odoo_sale_order_line_views/__manifest__.py b/odoo_sale_order_line_views/__manifest__.py index b6cd5608a9..151588993f 100644 --- a/odoo_sale_order_line_views/__manifest__.py +++ b/odoo_sale_order_line_views/__manifest__.py @@ -27,7 +27,7 @@ 'maintainer': 'Cybrosys Techno Solutions', 'website': "https://www.cybrosys.com", 'category': 'Sales', - 'licence': 'LGPL-3', + 'license': 'LGPL-3', 'depends': ['sale_management'], 'data': [ 'views/quotation_line_views.xml', From 9b0240e8ef8f7bd9f65fc8756a30464bb97852e4 Mon Sep 17 00:00:00 2001 From: Alejandro Santillan Date: Fri, 4 Aug 2023 21:00:14 +0000 Subject: [PATCH 3/4] [FIX] pos_custom_message: Warning raised by typo in manifest key: "license" The word 'license' can be written "licence" too but odoo expects "license". The fallowing warning was being raised, even when the module was not installed. WARNING ? odoo.modules.module: Missing `license` key in manifest for 'pos_custom_message', defaulting to LGPL --- pos_custom_message/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pos_custom_message/__manifest__.py b/pos_custom_message/__manifest__.py index 99bb1bbbca..e7d054800b 100644 --- a/pos_custom_message/__manifest__.py +++ b/pos_custom_message/__manifest__.py @@ -46,7 +46,7 @@ ], }, 'images': ['static/description/banner.jpg'], - 'licence': 'AGPL-3', + 'license': 'AGPL-3', 'installable': True, 'auto_install': False, 'application': False, From c78a23cbbde76fafa52abb8beb4c24c1fbc958d1 Mon Sep 17 00:00:00 2001 From: Alejandro Santillan Date: Fri, 4 Aug 2023 21:00:38 +0000 Subject: [PATCH 4/4] [FIX] website_pre_loader_style: Warning raised by typo in manifest key: "license" The word 'license' can be written "licence" too but odoo expects "license". The fallowing warning was being raised, even when the module was not installed. WARNING ? odoo.modules.module: Missing `license` key in manifest for 'website_pre_loader_style', defaulting to LGPL --- website_pre_loader_style/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website_pre_loader_style/__manifest__.py b/website_pre_loader_style/__manifest__.py index 996ee86333..5caab14e00 100644 --- a/website_pre_loader_style/__manifest__.py +++ b/website_pre_loader_style/__manifest__.py @@ -47,7 +47,7 @@ ] }, 'images': ['static/description/banner.jpg'], - 'licence': 'AGPL-3', + 'license': 'AGPL-3', 'installable': True, 'auto_install': False, 'application': False,