8 lines
202 B
Python
8 lines
202 B
Python
import frappe
|
|
|
|
def execute():
|
|
frappe.reload_doctype("System Settings")
|
|
ss = frappe.get_doc("System Settings", "System Settings")
|
|
ss.email_footer_address = frappe.db.get_default("company")
|
|
ss.save()
|