From a165b240a75b8c1612135eb6f6a4543117be2fad Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Thu, 23 Apr 2026 15:48:18 +0200 Subject: [PATCH] fix(edi): hardcode "Code List" DocType in importer (#54488) --- erpnext/edi/doctype/code_list/code_list_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/edi/doctype/code_list/code_list_import.py b/erpnext/edi/doctype/code_list/code_list_import.py index 582f1d6b864..0f6a51fc993 100644 --- a/erpnext/edi/doctype/code_list/code_list_import.py +++ b/erpnext/edi/doctype/code_list/code_list_import.py @@ -26,7 +26,7 @@ def import_genericode(): content, file_name = get_uploaded_genericode_file() return import_genericode_content( - doctype=frappe.form_dict.doctype, + doctype="Code List", docname=frappe.form_dict.docname, content=content, file_name=file_name,