5 lines
179 B
Python
5 lines
179 B
Python
import webnotes
|
|
def execute():
|
|
webnotes.conn.sql("""delete from tabDocPerm where parent='Appraisal'""")
|
|
from webnotes.model.sync import sync
|
|
sync("hr", "appraisal", force=True) |