[fix] changed text > text editor for description fields in tables

This commit is contained in:
Rushabh Mehta
2015-08-19 13:00:03 +05:30
parent b52724f5b9
commit 81e9d4e8f5
29 changed files with 7111 additions and 938 deletions

View File

@@ -0,0 +1,16 @@
## temp utility
import frappe
def update_doctypes():
for d in frappe.db.sql("""select df.parent, df.fieldname
from tabDocField df, tabDocType dt where df.fieldname
like "%description%" and df.parent = dt.name and dt.istable = 1""", as_dict=1):
dt = frappe.get_doc("DocType", d.parent)
for f in dt.fields:
if f.fieldname == d.fieldname and f.fieldtype in ("Text", "Small Text"):
print f.parent, f.fieldname
f.fieldtype = "Text Editor"
dt.save()
break