mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
10 lines
218 B
Python
10 lines
218 B
Python
from odoo import fields, models
|
|
|
|
|
|
class PmsProperty(models.Model):
|
|
_inherit = "pms.property"
|
|
|
|
is_used_regula = fields.Boolean(
|
|
string="Used regula", help="True if this property uses regula's OCR"
|
|
)
|