I want to use the Inventory module to track inventory (dance costumes) of a group of artists. These are my needs:
* costumes are made up of different clothes and need to be kept together.
* Each costume needs to have a uniquely identifying label
* each costume is assigned to an artist and need to track to whom
What is the best way to represent this?
Thinking
* piece of clothing => Product
* costume => package
* artist => location? (I don't see customers in Inventory)
* costume label => lot/serial number? (could be assigned to product too)
Any thoughts on this? Other Suggestions?
Thanks!