Show Stock Level only if any value(actual, reserved, reserved for production or projected) exists (#9168)

This commit is contained in:
KanchanChauhan 2017-06-14 15:37:47 +05:30 committed by Nabin Hait
parent 40be3f4048
commit c849f647f7

View File

@ -31,6 +31,8 @@ def get_data(item_code=None, warehouse=None, item_group=None,
tabBin b, tabItem i
where
b.item_code = i.name
and
(b.projected_qty != 0 or b.reserved_qty != 0 or b.reserved_qty_for_production != 0 or b.actual_qty != 0)
{conditions}
order by
{sort_by} {sort_order}