Reputation: 401
I want to know the average between the ticket created and closed, so I need to know as I understand the update log of the ticket where can I find the table of this, and I can not find trouble ticket table it's not exists !!!
Upvotes: 0
Views: 215
Reputation: 161
Changes are log in vtiger_modtracker_basic
and vtiger_modtracker_detail
.
In vtiger_modtracker_basic
you can find crmid, who made the change, when and what (the status)
Here the status values:
In vtiger_modtracker_detail
you can find which field has changed and the new and previous value.
So for your need, you should join both tables and calcuate the delay between the creation time and the date where the ticket changes its status from open to close.
Upvotes: 1