11 lines
306 B
Python
11 lines
306 B
Python
from odoo import models, fields, api
|
|
|
|
|
|
class HrLeave(models.Model):
|
|
_inherit = 'hr.leave'
|
|
|
|
alternate_follower_id = fields.Many2one(
|
|
comodel_name='res.users',
|
|
string='Alternate Follower',
|
|
help='User who will receive a copy of all communications related to this leave',
|
|
)
|