Browse Source

fix(patch): Handle NULL values from fieldtype change

develop
Gavin D'souza 3 years ago
parent
commit
0b7da52ef1
  1. 4
      erpnext/patches/v11_0/rename_bom_wo_fields.py

4
erpnext/patches/v11_0/rename_bom_wo_fields.py

@ -6,6 +6,10 @@ import frappe
from frappe.model.utils.rename_field import rename_field
def execute():
# updating column value to handle field change from Data to Currency
changed_field = "base_scrap_material_cost"
frappe.db.sql(f"update `tabBOM` set {changed_field} = '0' where trim(coalesce({changed_field}, ''))= ''")
for doctype in ['BOM Explosion Item', 'BOM Item', 'Work Order Item', 'Item']:
if frappe.db.has_column(doctype, 'allow_transfer_for_manufacture'):
if doctype != 'Item':

Loading…
Cancel
Save