diff options
Diffstat (limited to 'addons/iap_crm/models/crm_lead.py')
| -rw-r--r-- | addons/iap_crm/models/crm_lead.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/addons/iap_crm/models/crm_lead.py b/addons/iap_crm/models/crm_lead.py new file mode 100644 index 00000000..c45d9da8 --- /dev/null +++ b/addons/iap_crm/models/crm_lead.py @@ -0,0 +1,10 @@ +# -*- 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', help="Technical ID of reveal request done by IAP.") |
