diff --git a/erpnext/crm/doctype/lead/lead.py b/erpnext/crm/doctype/lead/lead.py index 282f30e9cd5..1439adb015b 100644 --- a/erpnext/crm/doctype/lead/lead.py +++ b/erpnext/crm/doctype/lead/lead.py @@ -22,7 +22,7 @@ class Lead(SellingController): load_address_and_contact(self) def before_insert(self): - if self.address_type and self.address_title and self.address_line1 and self.city and self.country: + if self.address_title and self.address_type: self.address_doc = self.create_address() self.contact_doc = self.create_contact()