I want to make a tool to help me planning the production.
I have table of 2000 products, and roughly 1500 different model plates (I am working in a foundry). Each model plate has up to 10 different (or same) models on it (models = products). When I get the order I break it down and end up with list such as:
product1 = 200
product2 = 500
product3 = 300
where productX is code and numbers are needed ammounts.
I'd like to make a tool that would scan through the model plates and find me the plates that have most of the ordered pieces on it. I would also like to do it in Python because I am familiar with it and I have wrote programs that interact with our database before.
Now I hope that I explained it well enough :)