brotherton-erpnext/erpnext/patches/jan_mar_2012/update_se_fld_options.py

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')