[IMP]pms_api_rest: added services and datamodels for get and patch checkin_partners

This commit is contained in:
braisab
2022-06-23 21:39:28 +02:00
committed by Darío Lodeiros
parent 18428a46cf
commit b30e2b6e5e
15 changed files with 502 additions and 18 deletions

View File

@@ -0,0 +1,10 @@
from marshmallow import fields
from odoo.addons.datamodel.core import Datamodel
class ResCityZipInfo(Datamodel):
_name = "res.city.zip.info"
cityId = fields.String(required=False, allow_none=True)
stateId = fields.String(required=False, allow_none=True)
countryId = fields.String(required=False, allow_none=True)