mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-23 06:59:20 +00:00
[Fix] Not able to export the Supplier-Wise Sales Analytics report (#15271)
This commit is contained in:
committed by
Nabin Hait
parent
3df2639a32
commit
624927bf0b
@@ -33,7 +33,7 @@ def execute(filters=None):
|
|||||||
|
|
||||||
row = [cd.item_code, cd.item_name, cd.description, cd.stock_uom, \
|
row = [cd.item_code, cd.item_name, cd.description, cd.stock_uom, \
|
||||||
consumed_qty, consumed_amount, delivered_qty, delivered_amount, \
|
consumed_qty, consumed_amount, delivered_qty, delivered_amount, \
|
||||||
total_qty, total_amount, list(set(suppliers))]
|
total_qty, total_amount, ','.join(list(set(suppliers)))]
|
||||||
data.append(row)
|
data.append(row)
|
||||||
|
|
||||||
return columns, data
|
return columns, data
|
||||||
|
|||||||
Reference in New Issue
Block a user