mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-05 11:33:56 +00:00
4 lines
150 B
Python
4 lines
150 B
Python
def execute():
|
|
import webnotes
|
|
for mapper in webnotes.conn.sql("""select name from `tabGL Mapper`"""):
|
|
webnotes.delete_doc("GL Mapper", mapper[0]) |