commit | e6e804e7d783a43d13dafe7b16f6e5d3b750f1d3 | [log] [tgz] |
---|---|---|
author | Deepesh Garg <deepeshgarg6@gmail.com> | Sat Oct 23 18:58:41 2021 +0530 |
committer | Deepesh Garg <deepeshgarg6@gmail.com> | Sat Oct 23 18:58:41 2021 +0530 |
tree | 0098fd3e7e61ff7586f07116756d9e6c188ee7eb | |
parent | 2849297471ece8c829e8701134c1150eb3efc4a3 [diff] |
fix: Get LTDS based on tax withholding category
diff --git a/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py b/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py index c3cb839..54042fb 100644 --- a/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py +++ b/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py
@@ -165,6 +165,7 @@ ldc_name = frappe.db.get_value('Lower Deduction Certificate', { 'pan_no': pan_no, + 'tax_withholding_category': tax_details.tax_withholding_category, 'valid_from': ('>=', tax_details.from_date), 'valid_upto': ('<=', tax_details.to_date) }, 'name')