12 lines
373 B
Python
12 lines
373 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import models, fields
|
||
|
|
||
|
|
||
|
class Department(models.Model):
|
||
|
_inherit = 'hr.department'
|
||
|
|
||
|
# Get department name using superuser, because model is not accessible for portal users
|
||
|
display_name = fields.Char(compute='_compute_display_name', compute_sudo=True)
|