50 lines
1.6 KiB
Python
50 lines
1.6 KiB
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
import frappe
|
|
from frappe.utils import cstr
|
|
import re
|
|
|
|
def execute():
|
|
item_details = frappe._dict()
|
|
for d in frappe.db.sql("select name, description from `tabItem`", as_dict=1):
|
|
description = cstr(d.description).strip()
|
|
new_desc = extract_description(description)
|
|
|
|
item_details.setdefault(d.name, frappe._dict({
|
|
"old_description": description,
|
|
"new_description": new_desc
|
|
}))
|
|
|
|
|
|
dt_list= ["Purchase Order Item","Supplier Quotation Item", "BOM", "BOM Explosion Item" , \
|
|
"BOM Item", "Opportunity Item" , "Quotation Item" , "Sales Order Item" , "Delivery Note Item" , \
|
|
"Material Request Item" , "Purchase Receipt Item" , "Stock Entry Detail"]
|
|
for dt in dt_list:
|
|
frappe.reload_doctype(dt)
|
|
records = frappe.db.sql("""select name, `{0}` as item_code, description from `tab{1}`
|
|
where description is not null and description like '%%<table%%'"""
|
|
.format("item" if dt=="BOM" else "item_code", dt), as_dict=1)
|
|
|
|
count = 1
|
|
for d in records:
|
|
if d.item_code and item_details.get(d.item_code) \
|
|
and cstr(d.description) == item_details.get(d.item_code).old_description:
|
|
desc = item_details.get(d.item_code).new_description
|
|
else:
|
|
desc = extract_description(cstr(d.description))
|
|
|
|
frappe.db.sql("""update `tab{0}` set description = %s
|
|
where name = %s """.format(dt), (desc, d.name))
|
|
|
|
count += 1
|
|
if count % 500 == 0:
|
|
frappe.db.commit()
|
|
|
|
|
|
def extract_description(desc):
|
|
for tag in ("img", "table", "tr", "td"):
|
|
desc = re.sub("\</*{0}[^>]*\>".format(tag), "", desc)
|
|
|
|
return desc
|