12 lines
359 B
Python
12 lines
359 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
def _can_be_edited_by_current_customer(self, *args, **kwargs):
|
|
return super()._can_be_edited_by_current_customer(*args, **kwargs) and not self.is_mondialrelay
|