Merge pull request #7237 from kennethsequeira/contact-sal
feat: Add salutation to contact display 😁
This commit is contained in:
commit
fbeacac986
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ def get_contact_details(contact):
|
|||
out = {
|
||||
"contact_person": contact.get("name"),
|
||||
"contact_display": " ".join(filter(None,
|
||||
[contact.get("first_name"), contact.get("last_name")])),
|
||||
[contact.get("salutation"), contact.get("first_name"), contact.get("last_name")])),
|
||||
"contact_email": contact.get("email_id"),
|
||||
"contact_mobile": contact.get("mobile_no"),
|
||||
"contact_phone": contact.get("phone"),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue