Fixed dict_keys concatenation
This commit is contained in:
parent
c8cd4ba6f7
commit
1e95323679
@ -188,7 +188,7 @@ def get_tax_accounts(item_list, columns, company_currency,
|
|||||||
%s
|
%s
|
||||||
order by description
|
order by description
|
||||||
""" % (tax_doctype, '%s', ', '.join(['%s']*len(invoice_item_row)), conditions),
|
""" % (tax_doctype, '%s', ', '.join(['%s']*len(invoice_item_row)), conditions),
|
||||||
tuple([doctype] + invoice_item_row.keys()))
|
tuple([doctype] + list(invoice_item_row)))
|
||||||
|
|
||||||
for parent, description, item_wise_tax_detail, charge_type, tax_amount in tax_details:
|
for parent, description, item_wise_tax_detail, charge_type, tax_amount in tax_details:
|
||||||
description = handle_html(description)
|
description = handle_html(description)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user