fix: Check for other properties
(cherry picked from commit b7befe49dc83b938b74b7a63d31787734d7857f8)
This commit is contained in:
parent
2ea4c95f86
commit
881e091b85
@ -45,7 +45,7 @@ def get_result(filters, tds_docs, tds_accounts, tax_category_map):
|
|||||||
if rate and tds_deducted:
|
if rate and tds_deducted:
|
||||||
row = {
|
row = {
|
||||||
'pan' if frappe.db.has_column('Supplier', 'pan') else 'tax_id': supplier_map.get(supplier, {}).get('pan'),
|
'pan' if frappe.db.has_column('Supplier', 'pan') else 'tax_id': supplier_map.get(supplier, {}).get('pan'),
|
||||||
'supplier': supplier_map.get(supplier).name
|
'supplier': supplier_map.get(supplier, {}).get('name')
|
||||||
}
|
}
|
||||||
|
|
||||||
if filters.naming_series == 'Naming Series':
|
if filters.naming_series == 'Naming Series':
|
||||||
@ -53,7 +53,7 @@ def get_result(filters, tds_docs, tds_accounts, tax_category_map):
|
|||||||
|
|
||||||
row.update({
|
row.update({
|
||||||
'section_code': tax_withholding_category,
|
'section_code': tax_withholding_category,
|
||||||
'entity_type': supplier_map.get(supplier).supplier_type,
|
'entity_type': supplier_map.get(supplier, {}).get('supplier_type'),
|
||||||
'tds_rate': rate,
|
'tds_rate': rate,
|
||||||
'total_amount_credited': total_amount_credited,
|
'total_amount_credited': total_amount_credited,
|
||||||
'tds_deducted': tds_deducted,
|
'tds_deducted': tds_deducted,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user