2018-12-24 09:08:49 +00:00
|
|
|
# Copyright (c) 2018, Frappe and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
|
|
from frappe.model.utils.rename_field import rename_field
|
|
|
|
|
|
|
|
def execute():
|
|
|
|
for doctype in ['BOM Explosion Item', 'BOM Item', 'Work Order Item', 'Item']:
|
|
|
|
if frappe.db.has_column(doctype, 'allow_transfer_for_manufacture'):
|
2018-12-26 06:58:37 +00:00
|
|
|
if doctype != 'Item':
|
|
|
|
frappe.reload_doc('manufacturing', 'doctype', frappe.scrub(doctype))
|
|
|
|
else:
|
|
|
|
frappe.reload_doc('stock', 'doctype', frappe.scrub(doctype))
|
|
|
|
|
|
|
|
rename_field(doctype, "allow_transfer_for_manufacture", "include_item_in_manufacturing")
|
|
|
|
|
|
|
|
if frappe.db.has_column('BOM', 'allow_same_item_multiple_times'):
|
|
|
|
frappe.db.sql(""" UPDATE tabBOM
|
|
|
|
SET
|
|
|
|
allow_same_item_multiple_times = 0
|
|
|
|
WHERE
|
|
|
|
trim(coalesce(allow_same_item_multiple_times, '')) = '' """)
|
2018-12-24 09:08:49 +00:00
|
|
|
|
|
|
|
for doctype in ['BOM', 'Work Order']:
|
|
|
|
frappe.reload_doc('manufacturing', 'doctype', frappe.scrub(doctype))
|
|
|
|
|
|
|
|
if frappe.db.has_column(doctype, 'transfer_material_against_job_card'):
|
|
|
|
frappe.db.sql(""" UPDATE `tab%s`
|
|
|
|
SET transfer_material_against = CASE WHEN
|
|
|
|
transfer_material_against_job_card = 1 then 'Job Card' Else 'Work Order' END
|
|
|
|
WHERE docstatus < 2""" % (doctype))
|
|
|
|
else:
|
|
|
|
frappe.db.sql(""" UPDATE `tab%s`
|
|
|
|
SET transfer_material_against = 'Work Order'
|
|
|
|
WHERE docstatus < 2""" % (doctype))
|