mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
[FIX]compute checkin partner state
This commit is contained in:
committed by
Eric Antones
parent
71dffddef2
commit
2b9813c9ea
@@ -599,9 +599,6 @@ class PmsCheckinPartner(models.Model):
|
|||||||
|
|
||||||
@api.model
|
@api.model
|
||||||
def _checkin_mandatory_fields(self, depends=False):
|
def _checkin_mandatory_fields(self, depends=False):
|
||||||
# api.depends need "reservation_id.state" in the lambda function
|
|
||||||
if depends:
|
|
||||||
return ["reservation_id.state", "name"]
|
|
||||||
mandatory_fields = [
|
mandatory_fields = [
|
||||||
"name",
|
"name",
|
||||||
"birthdate_date",
|
"birthdate_date",
|
||||||
@@ -610,12 +607,14 @@ class PmsCheckinPartner(models.Model):
|
|||||||
"document_type",
|
"document_type",
|
||||||
"document_expedition_date",
|
"document_expedition_date",
|
||||||
]
|
]
|
||||||
|
# api.depends need "reservation_id.state" in the lambda function
|
||||||
|
if depends:
|
||||||
|
mandatory_fields.extend(["reservation_id.state", "name"])
|
||||||
|
|
||||||
return mandatory_fields
|
return mandatory_fields
|
||||||
|
|
||||||
@api.model
|
@api.model
|
||||||
def _checkin_partner_fields(self):
|
def _checkin_partner_fields(self):
|
||||||
# api.depends need "reservation_id.state" in the lambda function
|
|
||||||
checkin_fields = [
|
checkin_fields = [
|
||||||
"firstname",
|
"firstname",
|
||||||
"lastname",
|
"lastname",
|
||||||
|
|||||||
Reference in New Issue
Block a user