15 lines
407 B
Python
15 lines
407 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class Department(models.Model):
|
|
_inherit = 'hr.department'
|
|
|
|
def name_get(self):
|
|
# Get department name using superuser, because model is not accessible
|
|
# for portal users
|
|
self_sudo = self.sudo()
|
|
return super(Department, self_sudo).name_get()
|