8 lines
184 B
Python
8 lines
184 B
Python
import frappe
|
|
|
|
|
|
def execute():
|
|
frappe.reload_doctype("Letter Head")
|
|
|
|
# source of all existing letter heads must be HTML
|
|
frappe.db.sql("update `tabLetter Head` set source = 'HTML'")
|