18 lines
503 B
Python
18 lines
503 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import models
|
||
|
|
||
|
|
||
|
class ResPartner(models.Model):
|
||
|
_inherit = 'res.partner'
|
||
|
|
||
|
def action_privacy_lookup(self):
|
||
|
self.ensure_one()
|
||
|
action = self.env['ir.actions.act_window']._for_xml_id('privacy_lookup.action_privacy_lookup_wizard')
|
||
|
action['context'] = {
|
||
|
'default_email': self.email,
|
||
|
'default_name': self.name,
|
||
|
}
|
||
|
return action
|