# -*- coding: utf-8 -*- # Copyright 2018 Youssef El Ouahby # Copyright 2018 Fabien Bourgeois # # 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 . """ GOLEM Precreation Member Request wizard""" import logging from odoo import models, fields, api, _ _LOGGER = logging.getLogger(__name__) class GolemPrecreationMemberRequestWizard(models.TransientModel): """GOLEM Precreation Request Member Wizard """ _name = 'golem.member.precreation.search' state = fields.Selection([('init', 'Init'), ('final', 'Final')], 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 def action(self): """ Return same wizard window """ self.ensure_one() _LOGGER.warning(self[0].contact_ids) _LOGGER.warning(self[0].member_ids) return {'name' : _('Search results'), 'type' : 'ir.actions.act_window', 'res_model' : self._name, 'res_id': self[0].id, 'view_mode': 'form', '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()