brotherton-erpnext/patches/november_2012/disable_cancelled_profiles.py

8 lines
240 B
Python
Raw Normal View History

import webnotes
def execute():
"""
in old system, deleted profiles were set as docstatus=2
in new system, its either disabled or deleted.
"""
webnotes.conn.sql("""update `tabProfile` set docstatus=0, enabled=0
where docstatus=2""")