[IMP]pms_api_rest: added get, post and patch services and datamdels to partner

This commit is contained in:
braisab
2022-10-03 19:42:12 +02:00
committed by Darío Lodeiros
parent 5fc6fbe4ce
commit c4b459f7d6
8 changed files with 309 additions and 103 deletions

View File

@@ -0,0 +1,9 @@
from marshmallow import fields
from odoo.addons.datamodel.core import Datamodel
class PmsResLangInfo(Datamodel):
_name = "res.lang.info"
code = fields.String(required=False, allow_none=True)
name = fields.String(required=False, allow_none=True)