brotherton-erpnext/patches/may_2012/reload_so_pending_items.py

9 lines
379 B
Python
Raw Normal View History

from __future__ import unicode_literals
2012-05-17 12:42:32 +00:00
def execute():
import webnotes
from webnotes.model import delete_doc
delete_doc("Search Criteria", "sales_order_pending_items1")
2012-05-18 05:37:04 +00:00
webnotes.conn.sql("update `tabSearch Criteria` set module = 'Selling' where module = 'CRM'")
2012-05-17 12:42:32 +00:00
from webnotes.modules import reload_doc
reload_doc('selling', 'search_criteria', 'sales_order_pending_items')