Initial commit: Crm packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:49 +02:00
commit 21a345b5b9
654 changed files with 418312 additions and 0 deletions

View file

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import crm_lead

View file

@ -0,0 +1,23 @@
# -*- 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'),
}
}