9 lines
166 B
Python
9 lines
166 B
Python
![]() |
# -*- coding: utf-8 -*-
|
||
|
from odoo import models, fields
|
||
|
|
||
|
|
||
|
class ResPartner(models.Model):
|
||
|
_inherit = 'res.partner'
|
||
|
|
||
|
initials = fields.Char(string="Initials")
|