mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
8 lines
160 B
Python
8 lines
160 B
Python
from odoo import api, fields, models
|
|
|
|
|
|
class HRExpenseLead(models.Model):
|
|
_inherit = 'hr.expense'
|
|
|
|
lead_id = fields.Many2one('crm.lead', string='Lead')
|