fix: Error handling in Upload Attendance (#23907)

This commit is contained in:
Anurag Mishra 2020-11-15 11:14:35 +05:30 committed by GitHub
parent 7178df8567
commit 69be37f88d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 5 deletions

View File

@ -28,7 +28,12 @@ def get_template():
w = UnicodeWriter()
w = add_header(w)
try:
w = add_data(w, args)
except Exception as e:
frappe.clear_messages()
frappe.respond_as_web_page("Holiday List Missing", html=e)
return
# write out response as a type csv
frappe.response['result'] = cstr(w.getvalue())