mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
Initial commit of hr_expense_lead for 11.0
This commit is contained in:
committed by
Bhoomi Vaishnani
parent
ab3c1c1fb6
commit
8a6ffa63a6
7
hr_expense_lead/models/hr_expense_lead.py
Normal file
7
hr_expense_lead/models/hr_expense_lead.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class HRExpenseLead(models.Model):
|
||||
_inherit = 'hr.expense'
|
||||
|
||||
lead_id = fields.Many2one('crm.lead', string='Lead')
|
||||
Reference in New Issue
Block a user