Jump to content
  • 0

Support Ticket Mass Close


cloudrck

Question

4 answers to this question

Recommended Posts

  • 0

This will mark all tickets in all departments closed.

UPDATE `support_tickets` SET `status` = 'closed'

Are you wanting to close them in a single department only? If so then you'll need to find the department ID in the 'support_departments' table and use the following. Where the number 1 is you'll need to change it to the department ID of choice:

UPDATE `support_tickets` SET `status` = 'closed' WHERE `department_id` = '1'
Link to comment
Share on other sites

  • 0

 

This will mark all tickets in all departments closed.

UPDATE `support_tickets` SET `status` = 'closed'

Are you wanting to close them in a single department only? If so then you'll need to find the department ID in the 'support_departments' table and use the following. Where the number 1 is you'll need to change it to the department ID of choice:

UPDATE `support_tickets` SET `status` = 'closed' WHERE `department_id` = '1'

 

That's it, thanks. I was too lazy to go through the database and figure this out myself.

Also I've not utilized this yet but perhaps this might be useful?

 

http://www.blesta.com/forums/index.php?/topic/2001-support-manager-tickets-delete-merge-spam-multiple-tickets/

 

 

EDIT:  Ahh it looks like you already have.

Yes, but I didn't want to go through 10 pages and delete tickets

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...