mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-13 02:01:21 +00:00
5 lines
184 B
Python
5 lines
184 B
Python
def execute():
|
|
import webnotes
|
|
from webnotes.model.doc import delete_doc
|
|
for mapper in webnotes.conn.sql("""select name from `tabGL Mapper`"""):
|
|
delete_doc("GL Mapper", mapper[0]) |