brotherton-erpnext/erpnext/patches/jan_mar_2012/update_se_fld_options.py
2012-03-21 16:02:44 +05:30

7 lines
267 B
Python

def execute():
import webnotes
webnotes.conn.sql("update `tabDocField` set options = 'Bill Of Materials' where fieldname = 'bom_no' and parent = 'Stock Entry'")
from webnotes.modules.module_manager import reload_doc
reload_doc('stock', 'doctype', 'stock_entry')