From 4126fab8fd2f00f004918c905d5778e5103a0684 Mon Sep 17 00:00:00 2001 From: houssine Date: Sun, 26 Jan 2020 12:43:22 +0100 Subject: [PATCH] [LIC] put right licence and version --- beesdoo_base/__manifest__.py | 3 ++- beesdoo_inventory/__manifest__.py | 23 ++++++++++------------- beesdoo_pos/__manifest__.py | 15 +++++++++------ beesdoo_product/__manifest__.py | 21 ++++++++++----------- 4 files changed, 31 insertions(+), 31 deletions(-) diff --git a/beesdoo_base/__manifest__.py b/beesdoo_base/__manifest__.py index d82ccaf..b0d5123 100644 --- a/beesdoo_base/__manifest__.py +++ b/beesdoo_base/__manifest__.py @@ -18,7 +18,7 @@ 'author': "Beescoop - Cellule IT", 'website': "https://github.com/beescoop/Obeesdoo", - 'category': 'Project Management', + 'category': 'Sales', 'version': '12.0.1.0.0', 'depends': ['point_of_sale', 'purchase', 'portal', 'partner_firstname'], @@ -33,4 +33,5 @@ 'data/default_contact.xml', 'report/beescard.xml', ], + 'installable': True, } diff --git a/beesdoo_inventory/__manifest__.py b/beesdoo_inventory/__manifest__.py index 1e8266b..40ba355 100644 --- a/beesdoo_inventory/__manifest__.py +++ b/beesdoo_inventory/__manifest__.py @@ -1,3 +1,9 @@ +# Copyright 2017 - 2020 BEES coop SCRLfs +# - Augustin Borsu +# - Elise Dupont +# - Thibault François +# - Jean-Marc François +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': "Beesdoo Inventory", @@ -11,20 +17,11 @@ 'author': "Beescoop - Cellule IT", 'website': "https://github.com/beescoop/Obeesdoo", - - # Categories can be used to filter modules in modules listing - # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml - # for the full list - 'category': 'Sales Management', + 'category': 'Inventory', 'version': '12.0.1.0.0', - - # any module necessary for this one to work correctly 'depends': ['delivery', 'beesdoo_base'], - - # always loaded 'data': [ - 'views/stock.xml' ], - - # only loaded in demonstration mode - 'demo': [], + 'views/stock.xml' + ], + 'installable': True, } diff --git a/beesdoo_pos/__manifest__.py b/beesdoo_pos/__manifest__.py index 5223899..f0a7f35 100644 --- a/beesdoo_pos/__manifest__.py +++ b/beesdoo_pos/__manifest__.py @@ -1,3 +1,10 @@ +# Copyright 2017 - 2020 BEES coop SCRLfs +# - Elouan Lebars +# - Rémy Taymans +# - Elise Dupont +# - Thibault François +# - Grégoire Leeuwerck +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': "Beescoop Point of sale", @@ -12,16 +19,11 @@ 'author': "Beescoop - Cellule IT", 'website': "https://github.com/beescoop/Obeesdoo", - # Categories can be used to filter modules in modules listing - # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml - # for the full list 'category': 'Point Of Sale', 'version': '12.0.1.0.0', - # any module necessary for this one to work correctly 'depends': ['beesdoo_base', 'beesdoo_product'], - # always loaded 'data': [ 'security/ir.model.access.csv', 'views/beesdoo_pos.xml', @@ -30,5 +32,6 @@ 'data/cron.xml', ], 'qweb': ['static/src/xml/templates.xml'], - # only loaded in demonstration mode + + 'installable': True, } diff --git a/beesdoo_product/__manifest__.py b/beesdoo_product/__manifest__.py index 47bdad5..f5ac0db 100644 --- a/beesdoo_product/__manifest__.py +++ b/beesdoo_product/__manifest__.py @@ -1,3 +1,10 @@ +# Copyright 2017 - 2020 BEES coop SCRLfs +# - Elouan Lebars +# - Rémy Taymans +# - Houssine BAKKALI +# - Elise Dupont +# - Thibault François +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': "beesdoo_product", @@ -11,17 +18,10 @@ 'author': "Beescoop - Cellule IT", 'website': "https://github.com/beescoop/Obeesdoo", - - # Categories can be used to filter modules in modules listing - # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml - # for the full list - 'category': 'Sales Management', - 'version': '0.1', - - # any module necessary for this one to work correctly + 'category': 'Sales', + 'version': '12.0.1.0.0', 'depends': ['beesdoo_base', 'product', 'sale', 'point_of_sale', 'pos_price_to_weight'], - # always loaded 'data': [ 'data/product_label.xml', 'data/barcode_rule.xml', @@ -30,6 +30,5 @@ 'wizard/views/label_printing_utils.xml', 'security/ir.model.access.csv', ], - # only loaded in demonstration mode - 'demo': [], + 'installable': True, }