[fix] [minor] create default warehouse on saving of company if not exists

This commit is contained in:
Nabin Hait 2013-09-25 13:00:22 +05:30
parent 52f6b5a6e8
commit 69a3ee54f2

View File

@ -59,6 +59,7 @@ class DocType:
def create_default_warehouses(self):
for whname in ("Stores", "Work In Progress", "Finished Goods"):
if not webnotes.conn.exists("Warehouse", whname + " - " + self.doc.abbr):
webnotes.bean({
"doctype":"Warehouse",
"warehouse_name": whname,