C
|
Chris Whitehead 5/19/2024 |
@Roosevelt I would have a flag in the table, let's call it "is_completed" which is a tinyint and has a default of "0", then when the user logs in and tries to create a new ticket you just run a query to check the number of records with the is_completed flag with a value of 0 for that user, if there are records then popup a message telling them they have outstanding tickets to complete. Once the user has completed the ticket and evaluated the service then set the is_completed flag to 1. |
![]() |
fhumanes 5/20/2024 |
Hello, It is not exactly the functionality you indicate, but I think it is easily update. HelpDesk: https://fhumanes.com/blog/gestor-de-proyectos/gestor-de-correos-2/ Greetings, |
![]() |
Roosevelt author 5/20/2024 |
very cool, I'll try it. required to |