From e99374796bfa4a3af5eb0a4ddab1939cbcc3d1f1 Mon Sep 17 00:00:00 2001 From: Fabien BOURGEOIS Date: Wed, 15 Nov 2017 16:00:24 +0100 Subject: [PATCH] [REF]Global modularisation refactoring, end --- coworking_app/__init__.py | 2 -- coworking_app/__manifest__.py | 11 ++++----- coworking_base/__init__.py | 2 -- coworking_base/__manifest__.py | 6 ++--- coworking_coworker/__manifest__.py | 11 +++++---- coworking_coworker/models/__init__.py | 2 -- coworking_coworker/models/coworker.py | 16 ------------- .../security/ir.model.access.csv | 1 - coworking_coworker/views/coworker_views.xml | 8 ------- coworking_event/__manifest__.py | 12 ++++++---- coworking_event/models/__init__.py | 3 +-- coworking_event/models/coworker.py | 22 +++++++++++++++++ coworking_event/security/ir.model.access.csv | 2 -- coworking_event/views/coworker_views.xml | 24 +++++++++++++++++++ 14 files changed, 67 insertions(+), 55 deletions(-) create mode 100644 coworking_event/models/coworker.py create mode 100644 coworking_event/views/coworker_views.xml diff --git a/coworking_app/__init__.py b/coworking_app/__init__.py index cde864b..40a96af 100644 --- a/coworking_app/__init__.py +++ b/coworking_app/__init__.py @@ -1,3 +1 @@ # -*- coding: utf-8 -*- - -from . import models diff --git a/coworking_app/__manifest__.py b/coworking_app/__manifest__.py index 87c735d..3a363af 100644 --- a/coworking_app/__manifest__.py +++ b/coworking_app/__manifest__.py @@ -16,16 +16,15 @@ # along with this program. If not, see . { - 'name': 'Coworking', + 'name': 'Coworking whole Application', 'summary': 'yaltik coworking module simplify your coworking gerance', 'description': """ yaltik coworking module simplify your coworking gerance """, 'version': '10.0.0.0.1', - 'category': 'Useless', + 'category': 'Coworking', 'author': 'Yaltik', 'license': 'AGPL-3', - 'application': False, + 'application': True, 'installable': True, - 'data': ['views/coworking_menu.xml', 'views/coworker_views.xml', - 'security/ir.model.access.csv', 'views/event_menu.xml', 'views/event_views.xml'], - 'depends': ['base'] + 'data': [], + 'depends': ['coworking_coworker', 'coworking_event'] } diff --git a/coworking_base/__init__.py b/coworking_base/__init__.py index cde864b..40a96af 100644 --- a/coworking_base/__init__.py +++ b/coworking_base/__init__.py @@ -1,3 +1 @@ # -*- coding: utf-8 -*- - -from . import models diff --git a/coworking_base/__manifest__.py b/coworking_base/__manifest__.py index 87c735d..868b689 100644 --- a/coworking_base/__manifest__.py +++ b/coworking_base/__manifest__.py @@ -16,16 +16,14 @@ # along with this program. If not, see . { - 'name': 'Coworking', + 'name': 'Coworking base', 'summary': 'yaltik coworking module simplify your coworking gerance', 'description': """ yaltik coworking module simplify your coworking gerance """, 'version': '10.0.0.0.1', - 'category': 'Useless', + 'category': 'Coworking', 'author': 'Yaltik', 'license': 'AGPL-3', 'application': False, 'installable': True, - 'data': ['views/coworking_menu.xml', 'views/coworker_views.xml', - 'security/ir.model.access.csv', 'views/event_menu.xml', 'views/event_views.xml'], 'depends': ['base'] } diff --git a/coworking_coworker/__manifest__.py b/coworking_coworker/__manifest__.py index 87c735d..5050e10 100644 --- a/coworking_coworker/__manifest__.py +++ b/coworking_coworker/__manifest__.py @@ -16,16 +16,17 @@ # along with this program. If not, see . { - 'name': 'Coworking', + 'name': 'Coworking coworker', 'summary': 'yaltik coworking module simplify your coworking gerance', 'description': """ yaltik coworking module simplify your coworking gerance """, 'version': '10.0.0.0.1', - 'category': 'Useless', + 'category': 'Coworking', 'author': 'Yaltik', 'license': 'AGPL-3', 'application': False, 'installable': True, - 'data': ['views/coworking_menu.xml', 'views/coworker_views.xml', - 'security/ir.model.access.csv', 'views/event_menu.xml', 'views/event_views.xml'], - 'depends': ['base'] + 'data': ['security/ir.model.access.csv', + 'views/coworking_menu.xml', + 'views/coworker_views.xml'], + 'depends': ['coworking_base'] } diff --git a/coworking_coworker/models/__init__.py b/coworking_coworker/models/__init__.py index 7f37d89..4e351f4 100644 --- a/coworking_coworker/models/__init__.py +++ b/coworking_coworker/models/__init__.py @@ -1,4 +1,2 @@ # -*- coding: utf-8 -*- -"""dd""" from . import coworker -from . import event diff --git a/coworking_coworker/models/coworker.py b/coworking_coworker/models/coworker.py index 87e0b63..7852413 100644 --- a/coworking_coworker/models/coworker.py +++ b/coworking_coworker/models/coworker.py @@ -42,22 +42,6 @@ class Coworker(models.Model): is_done = fields.Boolean('Done?') is_active = fields.Boolean('Active?', default=True) -# Event fields - manager_event_ids = fields.One2many('coworking.event', 'manager_id', - string='Events managed') - event_ids = fields.Many2many('coworking.event', string='Events visited') - - events_coworker_count = fields.Integer('Number of event have participe', - compute='_compute_events_coworker_count') - - - @api.depends('event_ids') - def _compute_events_coworker_count(self): - """ Computes number of event coworker """ - for event in self: - event.events_coworker_count = len(event.event_ids) - - @api.depends('name', 'firstname') def _compute_full_name(self): """Concaténation du nom et du prénom""" diff --git a/coworking_coworker/security/ir.model.access.csv b/coworking_coworker/security/ir.model.access.csv index 7b1f30b..89f9993 100644 --- a/coworking_coworker/security/ir.model.access.csv +++ b/coworking_coworker/security/ir.model.access.csv @@ -1,4 +1,3 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink acess_coworker_group_user,Access COWORKER Member User,model_coworking_coworker,base.group_user,1,1,1,0 acess_coworker_group_manager,Access COWORKER Member Manager,model_coworking_coworker,base.group_partner_manager,1,1,1,1 -acess_coworker_group_user,Access COWORKER Member User,model_coworking_event,base.group_user,1,1,1,1 diff --git a/coworking_coworker/views/coworker_views.xml b/coworking_coworker/views/coworker_views.xml index 91ff0bd..69024f4 100644 --- a/coworking_coworker/views/coworker_views.xml +++ b/coworking_coworker/views/coworker_views.xml @@ -37,14 +37,6 @@ - - - - - - - diff --git a/coworking_event/__manifest__.py b/coworking_event/__manifest__.py index 87c735d..3d9e548 100644 --- a/coworking_event/__manifest__.py +++ b/coworking_event/__manifest__.py @@ -16,16 +16,18 @@ # along with this program. If not, see . { - 'name': 'Coworking', + 'name': 'Coworking event', 'summary': 'yaltik coworking module simplify your coworking gerance', 'description': """ yaltik coworking module simplify your coworking gerance """, 'version': '10.0.0.0.1', - 'category': 'Useless', + 'category': 'Coworking', 'author': 'Yaltik', 'license': 'AGPL-3', 'application': False, 'installable': True, - 'data': ['views/coworking_menu.xml', 'views/coworker_views.xml', - 'security/ir.model.access.csv', 'views/event_menu.xml', 'views/event_views.xml'], - 'depends': ['base'] + 'data': ['security/ir.model.access.csv', + 'views/event_menu.xml', + 'views/event_views.xml', + 'views/coworker_views.xml'], + 'depends': ['coworking_coworker'] } diff --git a/coworking_event/models/__init__.py b/coworking_event/models/__init__.py index 7f37d89..e57763e 100644 --- a/coworking_event/models/__init__.py +++ b/coworking_event/models/__init__.py @@ -1,4 +1,3 @@ # -*- coding: utf-8 -*- """dd""" -from . import coworker -from . import event +from . import event, coworker diff --git a/coworking_event/models/coworker.py b/coworking_event/models/coworker.py new file mode 100644 index 0000000..f556f3d --- /dev/null +++ b/coworking_event/models/coworker.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- + +""" Coworker adaptations """ + +from odoo import models, fields, api + +class Coworker(models.Model): + """ Coworker adaptations """ + _inherit = 'coworking.coworker' + + manager_event_ids = fields.One2many('coworking.event', 'manager_id', + string='Events managed') + event_ids = fields.Many2many('coworking.event', string='Events visited') + + events_coworker_count = fields.Integer('Number of event have participe', + compute='_compute_events_coworker_count') + + @api.depends('event_ids') + def _compute_events_coworker_count(self): + """ Computes number of event coworker """ + for event in self: + event.events_coworker_count = len(event.event_ids) diff --git a/coworking_event/security/ir.model.access.csv b/coworking_event/security/ir.model.access.csv index 7b1f30b..8996eec 100644 --- a/coworking_event/security/ir.model.access.csv +++ b/coworking_event/security/ir.model.access.csv @@ -1,4 +1,2 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink -acess_coworker_group_user,Access COWORKER Member User,model_coworking_coworker,base.group_user,1,1,1,0 -acess_coworker_group_manager,Access COWORKER Member Manager,model_coworking_coworker,base.group_partner_manager,1,1,1,1 acess_coworker_group_user,Access COWORKER Member User,model_coworking_event,base.group_user,1,1,1,1 diff --git a/coworking_event/views/coworker_views.xml b/coworking_event/views/coworker_views.xml new file mode 100644 index 0000000..68f5668 --- /dev/null +++ b/coworking_event/views/coworker_views.xml @@ -0,0 +1,24 @@ + + + + + + + Coworker Form adaptations + coworking.coworker + + + + + + + + + + + + + + +