[FIX] fix login controller, fix public & private endpoints, add cors

This commit is contained in:
miguelpadin
2021-12-27 16:31:09 +01:00
committed by Darío Lodeiros
parent 6f672029f5
commit af960fcec3
8 changed files with 10 additions and 85 deletions

View File

@@ -1,5 +1,3 @@
from datetime import datetime
from odoo.addons.base_rest import restapi
from odoo.addons.base_rest_datamodel.restapi import Datamodel
from odoo.addons.component.core import Component
@@ -9,7 +7,7 @@ class PmsPropertyComponent(Component):
_inherit = "base.rest.service"
_name = "pms.property.service"
_usage = "properties"
_collection = "pms.reservation.service"
_collection = "pms.private.services"
@restapi.method(
[
@@ -22,9 +20,8 @@ class PmsPropertyComponent(Component):
],
input_param=Datamodel("pms.property.search.param"),
output_param=Datamodel("pms.property.info", is_list=True),
auth="public",
)
def get_properties(self,property_search_param):
def get_properties(self, property_search_param):
domain = []
if property_search_param.name:
domain.append(("name", "like", property_search_param.name))
@@ -58,7 +55,6 @@ class PmsPropertyComponent(Component):
)
],
output_param=Datamodel("pms.property.info"),
auth="public",
)
def get_property(self, property_id):
pms_property = (
@@ -86,8 +82,7 @@ class PmsPropertyComponent(Component):
"GET",
)
],
output_param=Datamodel("pms.account.journal.info",is_list=True),
auth="public",
output_param=Datamodel("pms.account.journal.info", is_list=True),
)
def get_method_payments_property(self, property_id):