function suggestion: custom ticket sn

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
Barlos
Posts: 7
Joined: Thu Dec 15, 2011 2:51 am

function suggestion: custom ticket sn

Post by Barlos »

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
Klemen
Site Admin
Posts: 10145
Joined: Fri Feb 11, 2005 4:04 pm

Re: function suggestion: custom ticket sn

Post by Klemen »

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.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
Barlos
Posts: 7
Joined: Thu Dec 15, 2011 2:51 am

Re: function suggestion: custom ticket sn

Post by Barlos »

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.
Klemen
Site Admin
Posts: 10145
Joined: Fri Feb 11, 2005 4:04 pm

Re: function suggestion: custom ticket sn

Post by Klemen »

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 Image

Image 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
Barlos
Posts: 7
Joined: Thu Dec 15, 2011 2:51 am

Re: function suggestion: custom ticket sn

Post by Barlos »

ok Thankx
Post Reply