14 lines
383 B
Python
14 lines
383 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class Lead(models.Model):
|
|
_inherit = 'crm.lead'
|
|
|
|
reveal_id = fields.Char(string='Reveal ID') # Technical ID of reveal request done by IAP
|
|
|
|
def _merge_get_fields(self):
|
|
return super(Lead, self)._merge_get_fields() + ['reveal_id']
|