[ADD]14.0-pms_ocr_regula: module to connect the OCR regula with the pms

This commit is contained in:
braisab
2023-12-28 19:49:36 +01:00
committed by Darío Lodeiros
parent 3ab3386a36
commit d13ecc5f64
21 changed files with 996 additions and 0 deletions

View File

@@ -0,0 +1 @@
from . import pms_property

View File

@@ -0,0 +1,9 @@
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"
)