blob: 1bc5c8f0f3d69945244496d6189114743ae1b82a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, models
class Lead(models.Model):
_inherit = 'crm.lead'
@api.model
def _form_view_auto_fill(self):
return {
'type': 'ir.actions.act_window',
'view_mode': 'form',
'res_model': 'crm.lead',
'context': {
'default_partner_id': self.env.context.get('params', {}).get('partner_id'),
}
}
|