Odoo18-Base/addons/website_sale_mondialrelay/models/res_partner.py
2025-01-06 10:57:38 +07:00

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