Opportunity From field is mandatory
diff --git a/erpnext/selling/doctype/opportunity/opportunity.py b/erpnext/selling/doctype/opportunity/opportunity.py
index af170c4..001ba3b 100644
--- a/erpnext/selling/doctype/opportunity/opportunity.py
+++ b/erpnext/selling/doctype/opportunity/opportunity.py
@@ -93,6 +93,9 @@
(not cint(self.get("__islocal"))) else None,
})
+ if not self.enquiry_from:
+ frappe.throw(_("Opportunity From field is mandatory"))
+
self.set_status()
self.validate_item_details()
self.validate_uom_is_integer("uom", "qty")