Can Hesk's ticket have SN (Serial number) field, in integer format? Custom format such example as below:
0001,0002,0003, .... 0999, etc.
Admin or Staff can the search.
Currently the custom field only has text format field.
Best Regards
function suggestion: custom ticket sn
Moderator: mkoch227
Re: function suggestion: custom ticket sn
Tickets already have a sequential ticket ID (see ticket head, next to the tracking ID display) and staff can indeed search by the sequential ticket ID.
If you want to display it with leading zeros that's just a formatting thing.
If you want to display it with leading zeros that's just a formatting thing.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: function suggestion: custom ticket sn
It's because I already have tracking doing method right now. Simply creating a folder with SN and put everything files in there.
I would keep the old one and move the new one to hesk, that's why I need a numbering field to go on.
I would keep the old one and move the new one to hesk, that's why I need a numbering field to go on.
Re: function suggestion: custom ticket sn
You can increase the sequential ID number by going directly into MySQL (for example using phpMyAdmin) and do something like
Code: Select all
ALTER TABLE hesk_tickets AUTO_INCREMENT = 999;
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools