Skip to content

Commit

Permalink
bug fix:Contact Doctype don't have any field 'job_title', it is 'desi…
Browse files Browse the repository at this point in the history
…gnation'
  • Loading branch information
sumitjain236 committed Jul 16, 2023
1 parent 6270607 commit ac81b7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erpnext/crm/doctype/lead/lead.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def create_contact(self):
"last_name": self.last_name,
"salutation": self.salutation,
"gender": self.gender,
"job_title": self.job_title,
"designation": self.job_title,
"company_name": self.company_name,
}
)
Expand Down

0 comments on commit ac81b7f

Please sign in to comment.