Skip to content

Commit

Permalink
Merge pull request #252 from frappe/develop
Browse files Browse the repository at this point in the history
chore: Merge develop to main
  • Loading branch information
shariquerik authored Jul 10, 2024
2 parents eff4015 + 11e6615 commit ff34601
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
7 changes: 5 additions & 2 deletions crm/fcrm/doctype/crm_deal/crm_deal.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,11 @@ def create_deal(args):
deal.update({
"organization": args.get("organization") or create_organization(args),
"contacts": [{"contact": contact, "is_primary": 1}] if contact else [],
"deal_owner": args.get("deal_owner"),
"status": args.get("status"),
})

args.pop("organization", None)

deal.update(args)

deal.insert(ignore_permissions=True)
return deal.name
7 changes: 4 additions & 3 deletions crm/fcrm/doctype/crm_lead/crm_lead.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,10 +339,11 @@ def convert_to_deal(lead, doc=None):
frappe.throw(_("Not allowed to convert Lead to Deal"), frappe.PermissionError)

lead = frappe.get_cached_doc("CRM Lead", lead)
lead.status = "Qualified"
if frappe.db.exists("CRM Lead Status", "Qualified"):
lead.status = "Qualified"
lead.converted = 1
if lead.sla:
lead.communication_status = 'Replied'
if lead.sla and frappe.db.exists("CRM Communication Status", "Replied"):
lead.communication_status = "Replied"
lead.save(ignore_permissions=True)
contact = lead.create_contact(False)
organization = lead.create_organization()
Expand Down

0 comments on commit ff34601

Please sign in to comment.