mirror of
https://github.com/bringout/oca-ocb-technical.git
synced 2026-04-21 23:52:08 +02:00
10 lines
304 B
Python
10 lines
304 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = "res.partner"
|
|
|
|
def _get_backend_root_menu_ids(self):
|
|
return super()._get_backend_root_menu_ids() + [self.env.ref('contacts.menu_contacts').id]
|