Hello,
is it possible to customize the search result view?
I would like to remove certain information from the view as it has no added value for us.
For Example, we do not need the categorie ChatSession. Or in the table view we do not need the groups, but the issue state would be interessting.
Maybe I can customize this over the console?
Thank you for your answer and have a nice day
Anne
There is currently no customisation via the console for this (as far as I know), but as a work around for the table view you could edit the /opt/zammad/app/assets/javascripts/app/controllers/search.coffee
file and edit the available columns here:
@lastChecked = e.currentTarget
@bulkForm.updateTicketIdsBulkForm(e)
ticket_ids = []
for item in localList
ticket_ids.push item.id
localeEl = @$('.js-content')
@table = new App.TicketList(
tableId: "find_#{model}"
el: localeEl
columns: [ 'number', 'title', 'customer', 'group', 'owner', 'created_at' ]
ticket_ids: ticket_ids
radio: false
checkbox: checkbox
bindRow:
events:
'click': openTicket
bindCheckbox:
events:
'click': callbackCheckbox
select_all: callbackCheckbox