Skip to content

Commit

Permalink
Merge pull request #501 from MetaPhase-Consulting/update/name-change-…
Browse files Browse the repository at this point in the history
…available-bidders-list

adding naming convention for available bidders list
  • Loading branch information
mjoyce91 authored Apr 19, 2021
2 parents 8e206b6 + 9b55c5f commit 4b0b38f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion talentmap_api/fsbid/services/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ def fsbid_available_bidder_to_talentmap(data):
"email": data.get('cdo_email', None),
"hru_id": data.get("hru_id", None),
},
"name": f"{employee.get('per_first_name', None)} {middle_name['full']}{employee.get('per_last_name', None)}",
"name": f"{employee.get('per_last_name', None)}, {employee.get('per_first_name', None)} {middle_name['initial']}",
"shortened_name": f"{employee.get('per_first_name', None)} {middle_name['initial']}{employee.get('per_last_name', None)}",
"initials": initials,
"perdet_seq_number": str(employee.get("perdet_seq_num", None)),
Expand Down

0 comments on commit 4b0b38f

Please sign in to comment.