mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-25 12:26:32 +00:00
add flt() for None type error
This commit is contained in:
@@ -489,7 +489,7 @@ class JournalEntry(AccountsController):
|
||||
).format(d.reference_name, d.account)
|
||||
)
|
||||
else:
|
||||
dr_or_cr = "debit" if d.credit > 0 else "credit"
|
||||
dr_or_cr = "debit" if flt(d.credit) > 0 else "credit"
|
||||
valid = False
|
||||
for jvd in against_entries:
|
||||
if flt(jvd[dr_or_cr]) > 0:
|
||||
|
||||
Reference in New Issue
Block a user