blob: eaed1d92bd7a9b0ea8732c0e8913509a00f4caf4 (
plain)
1
2
3
4
5
6
7
8
9
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'
lead_mining_request_id = fields.Many2one('crm.iap.lead.mining.request', string='Lead Mining Request', index=True)
|