How do I accomplish the following:
- How do I add roles for users which I can use to track progress
- How do I track ownership changes as a lead progresses from one role to the next
Roles:
- Lead worker (say, "Victoria", "Johnny", "Anthony")
- Qualifier, (say, "Brian", "Denise", "Lara")
- Sales person (say, "Sophie", "John", "Dennis")
The idea is that a Lead worker hands off leads to a Qualifier, who either qualify or dequalify the lead. If a Lead worker qualifies the lead it is handed to a Sales person who either make or break a sale.
Ultimately I want to be able to track any ownership change in order to analyze eventual problems during this "value chain". And also, of course, in order to pay the individual roles some share for their contribution to any successful sales.
Dennis makes three sales. The retrospective chain is, fx:
- Dennis-Lara-Johnny
- Dennis-Brian-Johnny
- Dennis-Denise-Victoria
Sophie makes two sales. The retrospective chain is, fx:
- Sophie-Brian-Anthony
- Sophie-Lara-Johnny
That gives us 5 sales with the following roles involved:
- Lead Worker
- Johnny (3 sales)
- Victoria (1 sale)
- Anthony (1 sale)
- Qualifier
- Lara (2 sales)
- Brian (2 sales)
- Denise (1 sale)
- Sales person
- Dennis (3 sales)
- Sophie (2 sales)
- John (0 sales)
How could I accomplish this?
*This post is locked for comments