[REF][IMP]Huge refactoring and small enhanceme GOLEM Member Precreation Search

This commit is contained in:
Fabien BOURGEOIS 2018-03-27 17:09:18 +02:00
parent ffa453d2c8
commit 5e557edf22
9 changed files with 133 additions and 51 deletions

View File

@ -19,7 +19,7 @@
{ {
'name': 'GOLEM Pre-creation search member', 'name': 'GOLEM Pre-creation search member',
'summary': 'Pre-creation search member', 'summary': 'Pre-creation search member',
'version': '10.0.0.1.0', 'version': '10.0.0.2.0',
'category': 'GOLEM', 'category': 'GOLEM',
'author': 'Fabien Bourgeois, Youssef El ouahby', 'author': 'Fabien Bourgeois, Youssef El ouahby',
'license': 'AGPL-3', 'license': 'AGPL-3',
@ -27,6 +27,5 @@
'installable': True, 'installable': True,
'depends': ['golem_member'], 'depends': ['golem_member'],
'data': ['views/golem_member_precreation_search_menu.xml', 'data': ['views/golem_member_precreation_search_menu.xml',
'wizard/golem_member_precreation_search_views.xml', 'wizard/golem_member_precreation_search_views.xml']
'wizard/golem_precreation_member_result_wizard_views.xml']
} }

View File

@ -16,4 +16,4 @@
# 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/>.
from . import res_partner from . import res_partner, golem_member

View File

@ -0,0 +1,40 @@
# -*- coding: utf-8 -*-
# Copyright 2018 Youssef El Ouahby <youssef@yaltik.com>
# Copyright 2018 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/>.
""" GOLEM Member adaptations """
from odoo import models, api, _
class GolemMember(models.Model):
""" GOLEM Member extention """
_inherit = 'golem.member'
@api.multi
def navigate_to_contact(self):
""" Navigates to member form, in edit mode """
self.ensure_one()
return {
'type': 'ir.actions.act_window',
'name': 'Member',
'view_type': 'form',
'view_mode': 'form',
'res_model': self._name,
'res_id': self[0].id,
'flags': {'initial_mode': 'edit'},
'target': 'current'
}

View File

@ -16,7 +16,7 @@
# 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 Contact """ """ Partner adaptations """
from odoo import models, api, _ from odoo import models, api, _

View File

@ -21,16 +21,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<data> <data>
<!-- Actions --> <!-- Actions -->
<act_window id="golem_precreation_member_request_action" <act_window id="golem_member_precreation_search_action"
name="Pre-creation contact search" name="Pre-creation contact search"
res_model="golem.precreation.member.request.wizard" res_model="golem.member.precreation.search"
view_mode="form" target="new" /> view_mode="form" target="new" />
<!-- Menus --> <!-- Menus -->
<menuitem id="golem_precreation_member_request_menu" <menuitem id="golem_member_precreation_search_menu"
name="Pre-creation contact search" name="Search for contact before create"
parent="golem_member.golem_member_tool_menu" sequence="10" parent="golem_member.golem_member_tool_menu" sequence="10"
action="golem_precreation_member_request_action" action="golem_member_precreation_search_action"
groups="golem_base.group_golem_user" /> groups="golem_base.group_golem_user" />
</data> </data>

View File

@ -16,4 +16,4 @@
# 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/>.
from . import golem_member_precreation_search, golem_precreation_member_result_wizard from . import golem_member_precreation_search

View File

@ -17,40 +17,50 @@
# 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 Precreation Member Request wizard""" """ GOLEM Precreation Member Request wizard"""
from odoo import models, fields, api import logging
from odoo import models, fields, api, _
_LOGGER = logging.getLogger(__name__)
class GolemPrecreationMemberRequestWizard(models.TransientModel): class GolemPrecreationMemberRequestWizard(models.TransientModel):
"""GOLEM Precreation Request Member Wizard """ """GOLEM Precreation Request Member Wizard """
_name = "golem.precreation.member.request.wizard" _name = 'golem.member.precreation.search'
name = fields.Char() state = fields.Selection([('init', 'Init'), ('final', 'Final')],
is_member = fields.Boolean() default='init')
keyword = fields.Char(required=True)
member_ids = fields.Many2many('golem.member', string='Members')
contact_ids = fields.Many2many('res.partner', string='Contacts')
@api.multi @api.multi
def search_members(self): def action(self):
""" Search members """ """ Return same wizard window """
self.ensure_one() self.ensure_one()
model = self._context.get('model') _LOGGER.warning(self[0].contact_ids)
domain = ['|', _LOGGER.warning(self[0].member_ids)
('name', 'ilike', self.name), return {'name' : _('Search results'),
('email', 'ilike', self.name)]
members = self.env[model].search(domain)
ids = []
if members:
ids = members.mapped('id')
title = ""
context = {}
if self.is_member:
title = 'Member search result "{}"'.format(self.name)
context = {'default_member_ids': ids}
else:
title = 'Contact search result "{}"'.format(self.name)
context = {'default_contact_ids': ids}
return {'name' : (title),
'type' : 'ir.actions.act_window', 'type' : 'ir.actions.act_window',
'res_model' : 'golem.precreation.member.result.wizard', 'res_model' : self._name,
'context': context, 'res_id': self[0].id,
'view_mode': 'form', 'view_mode': 'form',
'flags': {'initial_mode': 'view'},
'target': 'new'} 'target': 'new'}
@api.multi
def new_search(self):
""" New search """
self[0].write({'member_ids': [(6, False, [])],
'contact_ids': [(6, False, [])],
'state': 'init'})
return self[0].action()
@api.multi
def search_partners(self):
""" Search partners """
self.ensure_one()
domain = ['|',
('name', 'ilike', self[0].keyword),
('email', 'ilike', self[0].keyword)]
partner_ids = self.env['res.partner'].search(domain)
self[0].write({'contact_ids': [(6, False, partner_ids.ids)],
'member_ids': [(6, False, partner_ids.mapped('member_id').ids)],
'state': 'final'})
return self[0].action()

View File

@ -18,26 +18,57 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
--> -->
<odoo> <odoo>
<data> <data>
<record model="ir.ui.view" id="golem_precreation_member_request_wizard">
<field name="name">Golem Precreation Member Request Wizard Form</field> <record model="ir.ui.view" id="golem_member_precreation_search_view_form">
<field name="model">golem.precreation.member.request.wizard</field> <field name="name">GOLEM Member Precreation Search Form</field>
<field name="model">golem.member.precreation.search</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form string="Member Searching"> <form>
<field name="state" invisible="1" />
<group> <group>
<field name="name" /> <p colspan="2" states="init">
<field name="is_member" invisible="1"/> Please enter a keyword. It will be searched, as case-insensitive, into firstname, lastname and emails.
</p>
<field name="keyword" attrs="{'readonly': [('state', '=', 'final')]}" />
</group>
<group states="final">
<p colspan="2" attrs="{'invisible': [('member_ids', '!=', [])]}">
No member found for the current search.
</p>
<field name="member_ids" readonly="1"
attrs="{'invisible': [('member_ids', '=', [])]}">
<tree>
<field name="id" invisible="1"/>
<field name="firstname"/>
<field name="lastname"/>
<field name="email"/>
<button name="navigate_to_contact" type="object" icon="fa fa-external-link" />
</tree>
</field>
<p colspan="2" attrs="{'invisible': [('contact_ids', '!=', [])]}">
No contact found for the current search.
</p>
<field name="contact_ids" readonly="1"
attrs="{'invisible': [('contact_ids', '=', [])]}">
<tree>
<field name="id" invisible="1"/>
<field name="firstname"/>
<field name="lastname"/>
<field name="email"/>
<button name="navigate_to_contact" type="object" icon="fa fa-external-link" />
</tree>
</field>
</group> </group>
<footer> <footer>
<button name="search_members" string="Search Member" type="object" <button name="search_partners" string="Search Members and Contacts"
context="{'model': 'golem.member'}" class="oe_link" type="object" class="oe_highlight" states="init" />
attrs="{'invisible': [('is_member', '=', False)]}"/> <button name="new_search" string="New search"
<button name="search_members" string="Search Contact" type="object" type="object" states="final" />
context="{'model': 'res.partner'}" class="oe_link" <button string="Close" special="cancel" />
attrs="{'invisible': [('is_member', '=', True)]}" />
<button string="Cancel" class="oe_link" special="cancel" />
</footer> </footer>
</form> </form>
</field> </field>
</record> </record>
</data> </data>
</odoo> </odoo>

View File

@ -18,6 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
--> -->
<odoo> <odoo>
<data> <data>
<record model="ir.ui.view" id="golem_precreation_member_result_wizard"> <record model="ir.ui.view" id="golem_precreation_member_result_wizard">
<field name="name">Golem Precreation Member result Wizard Form</field> <field name="name">Golem Precreation Member result Wizard Form</field>
<field name="model">golem.precreation.member.result.wizard</field> <field name="model">golem.precreation.member.result.wizard</field>
@ -51,5 +52,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
</form> </form>
</field> </field>
</record> </record>
</data> </data>
</odoo> </odoo>