7 lines
162 B
Python
7 lines
162 B
Python
def execute():
|
|
import webnotes
|
|
from webnotes.model.code import get_obj
|
|
fs = get_obj('Features Setup')
|
|
fs.doc.fs_item_barcode = 0
|
|
fs.doc.save()
|
|
fs.validate() |