mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
10 lines
174 B
Python
10 lines
174 B
Python
from odoo import api, fields, models
|
|
|
|
|
|
class PmsCheckinPartner(models.Model):
|
|
_inherit = "pms.checkin.partner"
|
|
|
|
lastname2 = fields.Char(
|
|
required=True,
|
|
)
|