commit | 2f24546b21cea8834ceb92d7cc72314fa2750124 | [log] [tgz] |
---|---|---|
author | Deepesh Garg <deepeshgarg6@gmail.com> | Mon Jun 12 15:20:28 2023 +0530 |
committer | GitHub <noreply@github.com> | Mon Jun 12 15:20:28 2023 +0530 |
tree | 6fa01b137ddc594f24bfe57111be64409ae19021 | |
parent | c1b42b858d6d938e83e33bdda1e6e31346051c67 [diff] |
fix: Make difference entry button not working (#35622)
diff --git a/erpnext/accounts/doctype/journal_entry/journal_entry.py b/erpnext/accounts/doctype/journal_entry/journal_entry.py index 34a753f..74fd559 100644 --- a/erpnext/accounts/doctype/journal_entry/journal_entry.py +++ b/erpnext/accounts/doctype/journal_entry/journal_entry.py
@@ -952,6 +952,7 @@ blank_row.debit_in_account_currency = abs(diff) blank_row.debit = abs(diff) + self.set_total_debit_credit() self.validate_total_debit_and_credit() @frappe.whitelist()