[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,8 @@
from marshmallow import fields
from odoo.addons.datamodel.core import Datamodel
class PmsPropertyInfo(Datamodel):
_inherit = "pms.property.info"
isUsedRegula = fields.Boolean(required=False, allow_none=True)