mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-18 09:05:00 +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]) |