Neuer FAQ-Artikel zur Freigabe - keine Benachrichtigung!?

Hilfe zu Znuny Problemen aller Art
Locked
ddDagobert
Znuny wizard
Posts: 350
Joined: 13 May 2009, 14:24
Znuny Version: 5.0.10

Neuer FAQ-Artikel zur Freigabe - keine Benachrichtigung!?

Post by ddDagobert »

Hallo,

Agenten können einen neuen FAQ-Artikel erstellen. Zur Veröffentlichung muss dieser von einem Redaktionsteam freigegeben werden.
Bei einem neuen Artikel wird ein Ticket in der Queue FAQ-Redaktion erstellt, mit dem Hinweis, dass der Artikel xy freigegeben werden soll. So weit so gut.
Die Redakteure bekommen aber keine Benachrichtigung über dieses neue Ticket mit der Freigabeaufforderung, obwohl die Queue FAQ-Redakteure abonniert ist und die E-Mailbenachrichtigung für neue und verschobenen Ticket in "meine Queues" auf ja steht.
In der History des Tickets für den FAQ-Artikel steht auch nichts von Notification....

Code: Select all

NewTicket  	Neues Ticket [4500607] erstellt (Q=FAQ-Redaktion;P=2 normal;S=new).
AddNote Notiz hinzugefügt (Note)
Das ist alles.

Bug oder Feature? Ich dachte eigentlich, dass sollte schon funktionieren. Wie bekommt ein Redakteur sonst mit (ausser aktiv in die Queue zu schauen) dass er handeln soll?
Produktiv: OTRS 5.0.10 mit ITSM + Individualpakete und Feature AddOn auf SLES 11 SP2 mit PosgtreSQL 9.3
Test: OTRS 5.0.10 mit ITSM + Individualpakete und Feature AddOn auf SLES 11 SP2 mit PosgtreSQL 9.3
Entwicklung: OTRS 5.0.10 mit ITSM + Individualpakete und Feature AddOn auf SLES 11 SP2 mit PosgtreSQL 9.3
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Neuer FAQ-Artikel zur Freigabe - keine Benachrichtigung!?

Post by jojo »

Ich würde sagen Bug....

Mach am besten einen Bugreport unter http://bugs.otrs.org auf
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
ddDagobert
Znuny wizard
Posts: 350
Joined: 13 May 2009, 14:24
Znuny Version: 5.0.10

Neuer FAQ-Artikel zur Freigabe - keine Benachrichtigung!?

Post by ddDagobert »

http://bugs.otrs.org/show_bug.cgi?id=5224

Falls jemand so wie ich eine schnelle Lösung braucht:

Kernel/System/FAQ.pm editieren:

Bei Zeile 2962

Code: Select all

# create article
        my $ArticleID = $Self->{TicketObject}->ArticleCreate(
            TicketID       => $TicketID,
            ArticleType    => 'note-internal',
            SenderType     => 'system',
            Subject        => $Subject,
            Body           => $Body,
            ContentType    => "text/plain; charset=$Self->{ConfigObject}->Get('DefaultCharset')",
            UserID         => 1,
           HistoryType    => 'AddNote',
            HistoryComment => $Self->{ConfigObject}->Get('Ticket::Frontend::AgentTicketNote')->{HistoryComment},
        );
den HistoryType auf 'SystemRequest' ändern:

Code: Select all

# create article
        my $ArticleID = $Self->{TicketObject}->ArticleCreate(
            TicketID       => $TicketID,
            ArticleType    => 'note-internal',
            SenderType     => 'system',
            Subject        => $Subject,
            Body           => $Body,
            ContentType    => "text/plain; charset=$Self->{ConfigObject}->Get('DefaultCharset')",
            UserID         => 1,
#---A
#---Änderung des Historientyps, damit den Redakteuren eine Benachrichtigung zugestellt wird.            
#            HistoryType    => 'AddNote',
            HistoryType    => 'SystemRequest',
#---E            
            HistoryComment => $Self->{ConfigObject}->Get('Ticket::Frontend::AgentTicketNote')->{HistoryComment},
        );
Produktiv: OTRS 5.0.10 mit ITSM + Individualpakete und Feature AddOn auf SLES 11 SP2 mit PosgtreSQL 9.3
Test: OTRS 5.0.10 mit ITSM + Individualpakete und Feature AddOn auf SLES 11 SP2 mit PosgtreSQL 9.3
Entwicklung: OTRS 5.0.10 mit ITSM + Individualpakete und Feature AddOn auf SLES 11 SP2 mit PosgtreSQL 9.3
Locked