forked from Mapan/odoo17e
15 lines
368 B
Python
15 lines
368 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class DepartureReason(models.Model):
|
|
_inherit = "hr.departure.reason"
|
|
|
|
def _get_default_departure_reasons(self):
|
|
return {
|
|
**super()._get_default_departure_reasons(),
|
|
'freelance': 350,
|
|
}
|