mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
12 lines
315 B
Python
12 lines
315 B
Python
# Copyright (c) 2021 Open Source Integrators
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class PmsAmenity(models.Model):
|
|
_inherit = "pms.amenity"
|
|
|
|
is_main_amenity = fields.Boolean(
|
|
string="Main Amenity", help="Main Amenity", default=False
|
|
)
|