[SOLVED] Custom Article Type

Moderator: crythias

Locked
bzg
Znuny newbie
Posts: 3
Joined: 20 May 2016, 16:40
Znuny Version: 5.0.3

[SOLVED] Custom Article Type

Post by bzg »

Dear All,

I'm using a fresh new otrs install:
PRODUCT = OTRS
VERSION = 5.0.3
BUILDDATE = Wed Nov 11 20:17:38 CET 2015
BUILDHOST = otrsbuild.otrs.com

I have to declare a new Article Type, I put this in Config.pm:
$Self->{'Ticket::Frontend::AgentTicketNote'}->{'ArticleTypes'} = {
'note-custom' => '1',
'note-external' => '1',
'note-internal' => '1',
'note-report' => '1'
};

But when I try to add a new Note, there is no note-custom option. I tried to put this to ZZZAuto.pm and ZZZAAuto.pm too, but the result is the same. The note-report is showing up, so that works.

What's am I wrong?

Thank's in advance
Last edited by bzg on 23 May 2016, 10:03, edited 1 time in total.
wurzel
Znuny guru
Posts: 3274
Joined: 08 Jul 2010, 22:25
Znuny Version: x.x.x
Real Name: Florian

Re: Custom Article Type

Post by wurzel »

Hi,

what is in the article type table in the database? You have to add it if you want to use it.

Flo
OTRS 2025 SILVER (Prod)
OTRS 2025 auf Debian 12 (Test)
Znuny 7.x latest version testing auf Debian 12

-- Ich beantworte keine Forums-Fragen PN - No PN please

I won't answer to unfriendly users any more. A greeting and regards are just polite.
bzg
Znuny newbie
Posts: 3
Joined: 20 May 2016, 16:40
Znuny Version: 5.0.3

Re: Custom Article Type

Post by bzg »

Great, thank's for idea, it works. I didn't found it in the developer guide.
Locked