brotherton-erpnext/patches/jan_mar_2012/update_se_fld_options.py
2012-09-24 19:13:42 +05:30

8 lines
278 B
Python

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