mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
9 lines
238 B
Python
9 lines
238 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResPartnerIdNumber(models.Model):
|
|
_inherit = "res.partner.id_number"
|
|
_description = "Partner ID Number"
|
|
|
|
support_number = fields.Char(string="Support number", help="DNI support number")
|