Skip to content

Commit

Permalink
[FIX]pms: test onboard data required
Browse files Browse the repository at this point in the history
  • Loading branch information
DarioLodeiros committed Dec 17, 2024
1 parent ef5cb43 commit b4ba753
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pms/tests/test_pms_reservation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1679,6 +1679,7 @@ def test_reservation_action_checkout(self):
"name": "30065089H",
"valid_from": datetime.date.today(),
"partner_id": host.id,
"document_country_id": self.env.ref("base.es").id,
}
)
r1 = self.env["pms.reservation"].create(
Expand Down Expand Up @@ -1937,6 +1938,7 @@ def test_compute_ready_for_checkin(self):
"name": "30065000H",
"valid_from": datetime.date.today(),
"partner_id": self.host1.id,
"document_country_id": self.env.ref("base.es").id,
}
)
self.host2 = self.env["res.partner"].create(
Expand All @@ -1954,6 +1956,7 @@ def test_compute_ready_for_checkin(self):
"name": "30065089H",
"valid_from": datetime.date.today(),
"partner_id": self.host2.id,
"document_country_id": self.env.ref("base.es").id,
}
)
self.reservation = self.env["pms.reservation"].create(
Expand Down

0 comments on commit b4ba753

Please sign in to comment.