Merge pull request #17590 from deepeshgarg007/inactive_items_row_develop

fix: Do not append row if item is sold within days since last ordered
This commit is contained in:
Deepesh Garg 2019-05-14 11:56:59 +05:30 committed by GitHub
commit bbdd737b5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,6 +96,8 @@ def get_data(filters):
"qty": item_obj.qty,
"days_since_last_order": item_obj.days_since_last_order
})
else:
continue
data.append(row)