[MIG]GOLEM Family Minor glue to v10

This commit is contained in:
Fabien Bourgeois 2017-06-05 14:57:15 +02:00
parent 193c24e2b7
commit 203e6434aa
2 changed files with 5 additions and 2 deletions

View File

@ -23,7 +23,7 @@
'author': 'Fabien Bourgeois', 'author': 'Fabien Bourgeois',
'license': 'AGPL-3', 'license': 'AGPL-3',
'application': False, 'application': False,
'installable': False, 'installable': True,
'auto_install': True, 'auto_install': True,
'depends': ['golem_family', 'golem_member_minor'], 'depends': ['golem_family', 'golem_member_minor'],
'data': [] 'data': []

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright 2016 Fabien Bourgeois <fabien@yaltik.com> # Copyright 2017 Fabien Bourgeois <fabien@yaltik.com>
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as # it under the terms of the GNU Affero General Public License as
@ -15,12 +15,15 @@
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
""" GOLEM Family Minor glue module"""
from odoo import models, fields from odoo import models, fields
LEGAL_DMN = "['&', ('family_id', '=', family_id), ('id', '!=', partner_id)]" LEGAL_DMN = "['&', ('family_id', '=', family_id), ('id', '!=', partner_id)]"
class GolemMember(models.Model): class GolemMember(models.Model):
""" Member adaptations """
_inherit = 'golem.member' _inherit = 'golem.member'
legal_guardian_ids = fields.Many2many(domain=LEGAL_DMN) legal_guardian_ids = fields.Many2many(domain=LEGAL_DMN)