fix: double exception in payroll (#24080)
This commit is contained in:
@@ -302,7 +302,9 @@ class PayrollEntry(Document):
|
|||||||
jv_name = journal_entry.name
|
jv_name = journal_entry.name
|
||||||
self.update_salary_slip_status(jv_name = jv_name)
|
self.update_salary_slip_status(jv_name = jv_name)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
if type(e) in (str, list, tuple):
|
||||||
frappe.msgprint(e)
|
frappe.msgprint(e)
|
||||||
|
raise
|
||||||
|
|
||||||
return jv_name
|
return jv_name
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user