mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-27 00:44:45 +00:00
7 lines
235 B
Python
7 lines
235 B
Python
def execute():
|
|
import webnotes
|
|
webnotes.conn.sql("update `tabDocField` set `default` = 1 where fieldname = 'conversion_rate' and parent = 'POS Setting'")
|
|
|
|
from webnotes.model import delete_doc
|
|
delete_doc('DocType', 'POS Settings')
|