2026-08-30 00:48:25 -04:00

21 lines
666 B
Python

from odoo import fields, models
class HrEmployee(models.Model):
_inherit = "hr.employee"
mcs_operating_role = fields.Selection(
[
("founder", "Founder"),
("senior_developer", "Senior Developer"),
("junior_developer", "Junior Developer"),
("designer", "Graphic Designer"),
("video_editor", "Video Editor"),
("seo_specialist", "SEO Specialist"),
("ads_specialist", "Ads Specialist"),
("operations", "Operations"),
],
string="Operating Role",
)
mcs_available_hours_week = fields.Float(string="Available Hours / Week", default=40)