commit | dc5d2c740611c687b64066246272428e8f7a4962 | [log] [tgz] |
---|---|---|
author | ruthra kumar <ruthra@erpnext.com> | Thu Oct 26 20:36:52 2023 +0530 |
committer | ruthra kumar <ruthra@erpnext.com> | Thu Oct 26 20:36:52 2023 +0530 |
tree | 128d2f775a1370b4910fd9e3b360ae7563533654 | |
parent | 025acc0e480b1bd092aa6199386cb020948903fd [diff] |
fix: typerror on TDS payable monthly report
diff --git a/erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py b/erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py index f2ec31c..eac5426 100644 --- a/erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py +++ b/erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py
@@ -68,7 +68,7 @@ tax_amount += entry.credit - entry.debit if net_total_map.get(name): - if voucher_type == "Journal Entry": + if voucher_type == "Journal Entry" and tax_amount and rate: # back calcalute total amount from rate and tax_amount total_amount = grand_total = base_total = tax_amount / (rate / 100) else: