24 lines
677 B
Python
24 lines
677 B
Python
|
# -*- 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):
|
||
|
"""
|
||
|
deprecated as of saas-14.3, not needed for newer versions of the mail plugin but necessary
|
||
|
for supporting older versions
|
||
|
"""
|
||
|
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'),
|
||
|
}
|
||
|
}
|