forked from Mapan/odoo17e
11 lines
280 B
Python
11 lines
280 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class HrEmployee(models.Model):
|
|
_inherit = 'hr.employee'
|
|
|
|
documents_share_id = fields.Many2one(groups="hr_payroll.group_hr_payroll_user")
|