mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-27 17:04:47 +00:00
fix: Stock qty in HSN wise outward summary
This commit is contained in:
@@ -43,6 +43,12 @@ def _execute(filters=None):
|
|||||||
|
|
||||||
data.append(row)
|
data.append(row)
|
||||||
added_item.append((d.parent, d.item_code))
|
added_item.append((d.parent, d.item_code))
|
||||||
|
# gst is already added, just add qty and taxable value
|
||||||
|
else:
|
||||||
|
row = [d.gst_hsn_code, d.description, d.stock_uom, d.stock_qty, d.base_net_amount, d.base_net_amount]
|
||||||
|
for tax in tax_columns:
|
||||||
|
row += [0]
|
||||||
|
data.append(row)
|
||||||
if data:
|
if data:
|
||||||
data = get_merged_data(columns, data) # merge same hsn code data
|
data = get_merged_data(columns, data) # merge same hsn code data
|
||||||
return columns, data
|
return columns, data
|
||||||
|
|||||||
Reference in New Issue
Block a user