mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
8 lines
179 B
Python
8 lines
179 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResPartnerCategory(models.Model):
|
|
_inherit = "res.partner.category"
|
|
|
|
is_used_in_checkin = fields.Boolean(string="Used in checkin")
|