Search found 9 matches
- 19 May 2014, 15:37
- Forum: General
- Topic: Customer can't search on Dynamic field
- Replies: 0
- Views: 918
Customer can't search on Dynamic field
Hi I have OTRS 3.3.3 on Windows Server I have several dynamic field (text, date,...) associated with tickets. I can search on dynamic field in interface agent but the customer can't search on any dynamic field. The result is always : "no results found". In log I've : [Mon May 19 13:50:14 2...
- 11 Mar 2014, 10:48
- Forum: General
- Topic: Add "customer city" column to the customer interface
- Replies: 1
- Views: 572
Add "customer city" column to the customer interface
Hi,
I'd like to add a new column with the city of a customer to the ticketoverview in customer interface.
I did it for timeUnit but i can't find how to modify customerTicketOverview.pm to do it for the city :/
I'm running OTRS 3.3.3 on windows server 2008
Thanks !
I'd like to add a new column with the city of a customer to the ticketoverview in customer interface.
I did it for timeUnit but i can't find how to modify customerTicketOverview.pm to do it for the city :/
I'm running OTRS 3.3.3 on windows server 2008
Thanks !
- 28 Jan 2014, 18:05
- Forum: General
- Topic: Last modification date dynamic field
- Replies: 3
- Views: 2594
Re: Last modification date dynamic field
I found the solution. I use current_timestamp as the value for my last modification_date It might seem that you have to wait for OTRS to take the modifications into account. My code if someone else need this function : # create a new value entry SQL => return if !$Self->{DBObject}->Do( 'INSERT INTO ...
- 27 Jan 2014, 16:12
- Forum: General
- Topic: Last modification date dynamic field
- Replies: 3
- Views: 2594
Re: Last modification date dynamic field
There is no error. I think that my modification in the code aren't take into account.
Nothings happens when I update a value
Should I recompile the code ? If I have to, how can I do that ?
Sorry but i know absolutely nothing about Perl.
Thanks
Nothings happens when I update a value
Should I recompile the code ? If I have to, how can I do that ?
Sorry but i know absolutely nothing about Perl.
Thanks
- 24 Jan 2014, 16:06
- Forum: General
- Topic: Last modification date dynamic field
- Replies: 3
- Views: 2594
Last modification date dynamic field
Hi, I would like to have a last modification date/time for dynamic fields. I add a column in dynamic_field_value table named last_modification_time (datetime type) I add this piece of code in DynamicFieldValue.pm my $ValueLastDate = strftime "%F %H:%M:%S", localtime; for my $Value (@Values...
- 14 Jan 2014, 18:18
- Forum: General
- Topic: Time Units column in customer interface
- Replies: 6
- Views: 1644
Re: Time Units column in customer interface
Thanks it works !

- 14 Jan 2014, 11:45
- Forum: General
- Topic: Time Units column in customer interface
- Replies: 6
- Views: 1644
Re: Time Units column in customer interface
Thanks, I tried to do it that way CustomerTicketOverview.pm : my $ConfigObject = Kernel::Config->new(); my $EncodeObject = Kernel::System::Encode->new( ConfigObject => $ConfigObject, ); my $LogObject = Kernel::System::Log->new( ConfigObject => $ConfigObject, EncodeObject => $EncodeObject, ); my $Tim...
- 14 Jan 2014, 10:33
- Forum: General
- Topic: Time Units column in customer interface
- Replies: 6
- Views: 1644
Re: Time Units column in customer interface
Hi, Thanks for your answer I didn't use DynamicField because this field already exist in OTRS so I don't understand why I can't display it in the customer interface. For example you can see it in a AgentTicketZoom on the right banner "ticket information" under Accounted time My OTRS versio...
- 13 Jan 2014, 17:40
- Forum: General
- Topic: Time Units column in customer interface
- Replies: 6
- Views: 1644
Time Units column in customer interface
Hi, I manage to add a new column in the customer web interface by adding code to the customerTicketOverview.dtl <th class="WorkTime $LQData{"WorkTime Sort"}"> <a href="$Env{"Baselink"}Action=$Env{"Action"};Subaction=$Env{"Subaction"};SortBy=Work...