fix: Error in TDS computation summary

(cherry picked from commit f12deae24b7ab164edd0868a1254bdf28bfeac09)
This commit is contained in:
Deepesh Garg 2021-10-20 12:07:22 +05:30 committed by mergify-bot
parent 4ad2b851c4
commit 2ea4c95f86

View File

@ -44,7 +44,7 @@ def get_result(filters, tds_docs, tds_accounts, tax_category_map):
if rate and tds_deducted:
row = {
'pan' if frappe.db.has_column('Supplier', 'pan') else 'tax_id': supplier_map.get(supplier).pan,
'pan' if frappe.db.has_column('Supplier', 'pan') else 'tax_id': supplier_map.get(supplier, {}).get('pan'),
'supplier': supplier_map.get(supplier).name
}