Update warehouse as per master_name if master_name exists

This commit is contained in:
Nabin Hait 2015-05-04 08:53:38 +05:30
parent c712cdb580
commit 874ead2ed9

View File

@ -5,5 +5,6 @@ from __future__ import unicode_literals
import frappe
def execute():
frappe.db.sql("""update tabAccount set warehouse=master_name
where ifnull(account_type, '') = 'Warehouse' and ifnull(master_name, '') != ''""")
if "master_name" in frappe.db.get_table_columns("Account"):
frappe.db.sql("""update tabAccount set warehouse=master_name
where ifnull(account_type, '') = 'Warehouse' and ifnull(master_name, '') != ''""")