forked from Yaltik/golem
[ADD][WIP]GOLEM families handling with relation types...
This commit is contained in:
parent
9e28df3495
commit
3f860bb095
18
golem_family/__init__.py
Normal file
18
golem_family/__init__.py
Normal file
@ -0,0 +1,18 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright 2016 Fabien Bourgeois <fabien@yaltik.com>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# 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/>.
|
||||
|
||||
from . import models
|
30
golem_family/__openerp__.py
Normal file
30
golem_family/__openerp__.py
Normal file
@ -0,0 +1,30 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright 2016 Fabien Bourgeois <fabien@yaltik.com>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# 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/>.
|
||||
|
||||
{
|
||||
'name': 'GOLEM families',
|
||||
'summary': 'GOLEM Members Families',
|
||||
'description': ''' Non-profit french MJC members families management ''',
|
||||
'version': '0.1',
|
||||
'category': 'Non-profit management',
|
||||
'author': 'Fabien Bourgeois',
|
||||
'license': 'AGPL-3',
|
||||
'application': False,
|
||||
'installable': True,
|
||||
'depends': ['golem_member'],
|
||||
'data': ['views/golem_member_view.xml']
|
||||
}
|
18
golem_family/models/__init__.py
Normal file
18
golem_family/models/__init__.py
Normal file
@ -0,0 +1,18 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright 2016 Fabien Bourgeois <fabien@yaltik.com>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# 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/>.
|
||||
|
||||
from . import golem_family
|
61
golem_family/models/golem_family.py
Normal file
61
golem_family/models/golem_family.py
Normal file
@ -0,0 +1,61 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright 2016 Fabien Bourgeois <fabien@yaltik.com>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# 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/>.
|
||||
|
||||
from openerp import models, fields
|
||||
|
||||
|
||||
class ResPartner(models.Model):
|
||||
_inherit = 'res.partner'
|
||||
|
||||
family_ids = fields.Many2many('golem.member.family',
|
||||
string='Family member')
|
||||
|
||||
# @api.multi
|
||||
# def button_family_members(self):
|
||||
# self.ensure_one()
|
||||
# return {'name': _('Family Members'),
|
||||
# 'type': 'ir.actions.act_window',
|
||||
# 'res_model': 'golem.member.family',
|
||||
# 'view_mode': 'tree',
|
||||
# 'domain': [('memberfrom_id', '=', self[0].id)]}
|
||||
|
||||
|
||||
class GolemFamily(models.Model):
|
||||
_name = 'golem.member.family'
|
||||
_description = 'GOLEM Member Family'
|
||||
|
||||
memberfrom_id = fields.Many2one('golem.member', 'Family member 1')
|
||||
memberto_id = fields.Many2one('golem.member', string='Family member 2')
|
||||
relation_id = fields.Many2one('golem.member.family.relation',
|
||||
string='Family relation')
|
||||
|
||||
# @api.onchange('member_id')
|
||||
# def onchange_member_id(self):
|
||||
# mid = self.env.context.get('default_member_id')
|
||||
# member = self.env['golem.member'].browse([mid])
|
||||
# self.member_id = member.partner_id.id
|
||||
# return self
|
||||
|
||||
|
||||
class GolemFamilyRelation(models.Model):
|
||||
_name = 'golem.member.family.relation'
|
||||
_description = 'GOLEM Member Family Relation'
|
||||
_sql_constraints = [('golem_member_family_relation_name_uniq',
|
||||
'UNIQUE (name)',
|
||||
'Family relation must be unique.')]
|
||||
|
||||
name = fields.Char('Relation')
|
76
golem_family/views/golem_member_view.xml
Normal file
76
golem_family/views/golem_member_view.xml
Normal file
@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!--
|
||||
Copyright 2016 Fabien Bourgeois <fabien@yaltik.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
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/>.
|
||||
-->
|
||||
|
||||
<openerp>
|
||||
<data>
|
||||
<!-- Form -->
|
||||
<record model="ir.ui.view" id="member_tab_add">
|
||||
<field name="name">Add family management to new tab</field>
|
||||
<field name="model">golem.member</field>
|
||||
<field name="inherit_id" ref="golem_member.view_form" />
|
||||
<field name="arch" type="xml">
|
||||
<!--
|
||||
<div class="oe_title" position="before">
|
||||
<div class="oe_right oe_button_box">
|
||||
<button
|
||||
class="oe_inline oe_stat_button" type="object"
|
||||
context="{'default_memberfrom_id': partner_id}"
|
||||
name="button_family_members" icon="fa-list">
|
||||
<field string="Family" name="family_count" widget="statinfo"/>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
<page name="contact_details" position="after">
|
||||
<page name="family" string="Family">
|
||||
<field name="family_ids" widget="one2many"
|
||||
domain="['|',
|
||||
('memberfrom_id', '=', active_id),
|
||||
('memberto_id', '=', active_id)]"
|
||||
context="{'default_memberfrom_id': active_id}" />
|
||||
</page>
|
||||
</page>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- Tree -->
|
||||
<record id="family_tree" model="ir.ui.view">
|
||||
<field name="name">Family list</field>
|
||||
<field name="model">golem.member.family</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree editable="top">
|
||||
<field name="memberfrom_id" string="Family Member From" />
|
||||
<field name="relation_id" string="is the ... of" />
|
||||
<field name="memberto_id" string="Family Member To" />
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- Searches -->
|
||||
|
||||
<!-- Actions -->
|
||||
<act_window id="family_action_list" name="GOLEM Family Relations List"
|
||||
res_model="golem.member.family" view_mode="tree" />
|
||||
<!-- Menus -->
|
||||
<menuitem id="family_menu_list" name="Family relations"
|
||||
parent="membership.menu_membership" action="family_action_list"
|
||||
sequence="10" />
|
||||
|
||||
</data>
|
||||
</openerp>
|
Loading…
Reference in New Issue
Block a user