From 28f49a5a8e7d353b56500598a7346bc295811d14 Mon Sep 17 00:00:00 2001 From: Ranjith Kurungadam Date: Mon, 18 Jun 2018 10:40:23 +0530 Subject: [PATCH] fix - link validation error (#14547) --- erpnext/patches/v11_0/inter_state_field_for_gst.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/patches/v11_0/inter_state_field_for_gst.py b/erpnext/patches/v11_0/inter_state_field_for_gst.py index 7e751ce9a3..7f5c3aa067 100644 --- a/erpnext/patches/v11_0/inter_state_field_for_gst.py +++ b/erpnext/patches/v11_0/inter_state_field_for_gst.py @@ -5,7 +5,8 @@ def execute(): company = frappe.get_all('Company', filters = {'country': 'India'}) if not company: return - + frappe.reload_doc("hr", "doctype", "Employee Tax Exemption Declaration") + frappe.reload_doc("hr", "doctype", "Employee Tax Exemption Proof Submission") make_custom_fields() frappe.reload_doc("accounts", "doctype", "sales_taxes_and_charges")