Skip to content

Commit

Permalink
[IMP]pms_civitfun: support_number
Browse files Browse the repository at this point in the history
  • Loading branch information
DarioLodeiros committed Feb 8, 2024
1 parent 7c39222 commit aaffe4f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pms_civitfun/services/pms_checkin_partner_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ def _mapped_hosts_info(self, guest):
}
if guest.customFields.get("phone"):
checkin_vals["phone"] = guest.customFields.get("phone")
if guest.customFields.get("document_support_number"):
checkin_vals["support_number"] = guest.customFields.get(
"document_support_number"
)
if guest.customFields.get("address"):
checkin_vals["residence_street"] = guest.customFields.get(
"address"
Expand Down

0 comments on commit aaffe4f

Please sign in to comment.