Hello,
Is there any report that can show the total quantities for all warehouses? Say for example i have item A available in 3 warehouses, I need a report that will show how many is left or the total qoh in the 3 warehouse.
please
thank you
Hello,
Is there any report that can show the total quantities for all warehouses? Say for example i have item A available in 3 warehouses, I need a report that will show how many is left or the total qoh in the 3 warehouse.
please
thank you
Stock Ledger, Stock Balance or Stock Summary should work for this, I guess. Have you tried any of those?
All of these show quantities in each warehouse separately. I think what @ossphinc is looking for is a way to summarize it and find sum of total quantities.
Then I misunderstood the question, sorry
Something like this?
bins = frappe.get_all("Bin",
fields = ["actual_qty"],
filters = [
["actual_qty", ">", 0],
["item_code", "=", i.item_code]
])
actual_qty = reduce(lambda x,y:x+y, map(lambda b:b["actual_qty"], bins), 0)
Hello @ossphinc, “Bins” are just documents that hold the current state of a certain item in a specific warehouse. You can see yourself by going to https://yourdomain.org/desk#List/Bin/List.
The script is a python (server side) script and can be part of a custom report. (https://frappe.io/docs/user/en/guides/reports-and-printing/how-to-make-script-reports)
What do you need exactly? A report with a two filters, one for the item code and one for the warehouse?
Hi,
Im still trying to find an answer to this… Please let me know if you have a solution to it…