I want to set up a project where I can manage defects which are raised by customers.
I want the defect side of the relationship to look something like this ....
#1 Password cannot be saved User tried to save their password but couldn't1. Log on2. Choose change password3. Enter a new password4. Click save Customers
|
and I want thecustomer side to look like this
#99 Google Office 1 Swanky McDoodaa HouseCoolsvilleCalafornia Defects
|
I can set up a "one to many" with no problem at all.
Does anyone have any recommendations?
John
Comments
1 comment
Tagging seems like a fit for your application. http://studios.thoughtworks.com/mingle-agile-project-management/2.2/help/working_with_tags.html
You could tag each defect with the names of the customers that it affects. I'm not sure if you can get this into a tabular view on the card easily like you have in your top example, but when you open the defect all the associated tags are listed, so you should be able to see what customers you tagged the defect for.
Then on the customer card, you can add a table query like the one below, which should list all the defects tagged with "Google"
{{ table query: SELECT number, name, "defect status", priority WHERE Type = Defect AND TAGGED WITH 'Google'}}
Please sign in to leave a comment.