forked from Mapan/odoo17e
8 lines
156 B
Python
8 lines
156 B
Python
from odoo import models, fields
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
online_partner_information = fields.Char(readonly=True)
|