mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-02 03:39:11 +00:00
7 lines
201 B
Python
7 lines
201 B
Python
def execute():
|
|
import webnotes
|
|
from webnotes.modules.module_manager import reload_doc
|
|
reload_doc('stock', 'doctype', 'item')
|
|
|
|
webnotes.conn.sql("update `tabItem` set re_order_qty = min_order_qty")
|