fix: Contact Doctype doesn't have any field called job_title

fix: Contact Doctype doesn't have any field called `job_title`
This commit is contained in:
Sumit Jain 2023-08-04 17:45:16 +05:30 committed by GitHub
parent 17585f08ba
commit 49be740736
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -182,7 +182,7 @@ class Lead(SellingController, CRMNote):
"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,
}
)