fix: shopping cart quotation without website item
diff --git a/erpnext/selling/doctype/quotation/quotation.py b/erpnext/selling/doctype/quotation/quotation.py
index 61c0b8a..92b7fee 100644
--- a/erpnext/selling/doctype/quotation/quotation.py
+++ b/erpnext/selling/doctype/quotation/quotation.py
@@ -27,6 +27,7 @@
self.set_status()
self.validate_uom_is_integer("stock_uom", "qty")
self.validate_valid_till()
+ self.validate_shopping_cart_items()
self.set_customer_name()
if self.items:
self.with_items = 1
@@ -49,6 +50,13 @@
if self.valid_till and getdate(self.valid_till) < getdate(self.transaction_date):
frappe.throw(_("Valid till date cannot be before transaction date"))
+ def validate_shopping_cart_items(self):
+ if self.order_type != "Shopping Cart": return
+
+ for item in self.items:
+ if not frappe.db.exists("Website Item", {"item_code": item.item_code}):
+ frappe.throw(_("Item {0} must be a website item for Shopping Cart quotations".format(item.item_code)))
+
def has_sales_order(self):
return frappe.db.get_value("Sales Order Item", {"prevdoc_docname": self.name, "docstatus": 1})