I’m currently implementing a module which collects Thing
s into (sorted) List
s using a n-to-m relationship ListOfThing
. (Imagine checklists of things you want to pack for different travel cases.)
Now for some reason I want to temporary remove (suspend) one Thing from all Lists, but easily add it back at the same position later again. (Imagine: your red shoes are broken, so I can’t pack them into any of your travel cases until they get repaired.)
Also: When showing the suspended Thing, I would like to see the Lists it is listed on. And when viewing the Lists, I would like to see the suspended Thing (as being suspended).
Anyway, when printing (a report on List), I’d like to skip the suspended Things without any further effort. (Which is why I come up with active
).
What is best practice for this?
- Is it a good idea to use
Thing.active
and tweak theListOfThing
’ssearch_active()
to return all Things, no matter whether they are active or not? - Is it better to add some
suspended
flag toThing
? - Can a tree view be asked to show both active an inactive elements?