odoo/ext/clarico-addons/clarico_employee_carousel/models/hr_employee.py

12 lines
306 B
Python
Executable File

from odoo import api, fields, models
class SocialAccount(models.Model):
_inherit = 'hr.employee'
emp_facebook = fields.Char("Facebook Account")
emp_twitter = fields.Char("Twitter Account")
emp_linkedin = fields.Char("Linkedin Account")
emp_google = fields.Char("Google Account")