9 lines
189 B
Python
9 lines
189 B
Python
import frappe
|
|
|
|
from erpnext.setup.install import setup_currency_exchange
|
|
|
|
|
|
def execute():
|
|
frappe.reload_doc("accounts", "doctype", "currency_exchange_settings")
|
|
setup_currency_exchange()
|