Skip to content

Commit

Permalink
fix: incorrect parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
ruthra-kumar committed Feb 7, 2025
1 parent 1ecbfe2 commit 11959a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def get_invoice_vouchers(parties, tax_details, company, party_type="Supplier"):
{"apply_tds": 1, "tax_withholding_category": tax_details.get("tax_withholding_category")}
)

invoices_details = frappe.get_all(doctype, filters=filters, fields=["name", field])
invoices_details = frappe.get_all(doctype, filters=filters, fields=field)

for d in invoices_details:
d = frappe._dict(
Expand Down

0 comments on commit 11959a0

Please sign in to comment.