6 lines
143 B
Python
6 lines
143 B
Python
|
from __future__ import unicode_literals
|
||
|
import frappe
|
||
|
|
||
|
def execute():
|
||
|
stock_settings = frappe.get_doc('Stock Settings')
|
||
|
stock_settings.save()
|