Fehler OTRS 4 Kundenummer Dropdown

Hilfe zu OTRS Problemen aller Art
Post Reply
xoreax
Znuny newbie
Posts: 32
Joined: 27 Jun 2014, 09:02
Znuny Version: 3.3.6

Fehler OTRS 4 Kundenummer Dropdown

Post by xoreax »

Hallo ich habe die Tage ein Update von OTRS 4.0.6 auf 4.0.20 gemacht.
Jetzt spricht mich ein Kollege an der einen Kundenbenutzer anlegen will und auf einmal ist das Feld wo man die Kundennummer normalerweise händisch einträgt ein dropdown menü und ich kann nix mehr eintragen.
Ich gehe davon aus das es vom Update kommt.
Wo kann bzw muss ich schauen?
Hier mal ein Screenshot.
Danke vorab.
You do not have the required permissions to view the files attached to this post.
wurzel
Znuny guru
Posts: 3234
Joined: 08 Jul 2010, 22:25
Znuny Version: x.x.x
Real Name: Florian

Re: Fehler OTRS 4 Kundenummer Dropdown

Post by wurzel »

Hi,

das ist kein Fehler. Das konnte man in alten Versionen auch schon aktivieren. Warum es seit der 4 (?) mal standardmäßig umgestellt wurde? Keine Ahnung.

In jedem Fall ist es eine Config Einstellung

# use customer company support (reference to company, See CustomerCompany settings)
CustomerCompanySupport => 1,


Mit 1 hast Du das Dropdown, mit 0 hast Du Dein Textfeld.

Ab damit in die Config.pm und gut iss :)

viele Grüße
Florian
OTRS 8 SILVER (Prod)
OTRS 8 auf Debian 11 (Test)
Znuny 7.x latest version testing auf Debian 11

-- 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.
xoreax
Znuny newbie
Posts: 32
Joined: 27 Jun 2014, 09:02
Znuny Version: 3.3.6

Re: Fehler OTRS 4 Kundenummer Dropdown

Post by xoreax »

Danke für die schnelle Antwort.
Klappt leider noch nicht, hier mal meine Config die in /opt/otrs/Kernel liegt:

Code: Select all

# --
# Kernel/Config.pm - Config file for OTRS kernel
# Copyright (C) 2001-2015 xxx, http://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
#  Note:
#
#  -->> Most OTRS configuration should be done via the OTRS web interface
#       and the SysConfig. Only for some configuration, such as database
#       credentials and customer data source changes, you should edit this
#       file. For changes do customer data sources you can copy the definitions
#       from Kernel/Config/Defaults.pm and paste them in this file.
#       Config.pm will not be overwritten when updating OTRS.
# --

package Kernel::Config;

use strict;
use warnings;
use utf8;

sub Load {
    my $Self = shift;

    # ---------------------------------------------------- #
    # database settings                                    #
    # ---------------------------------------------------- #

    # The database host
    $Self->{'DatabaseHost'} = '127.0.0.1';

    # The database name
    $Self->{'Database'} = "otrs";

    # The database user
    $Self->{'DatabaseUser'} = "otrs";

    # The password of database user. You also can use bin/otrs.CryptPassword.pl
    # for crypted passwords
    $Self->{'DatabasePw'} = 'p2HJC8ZYnwLA3xl5';

    # The database DSN for MySQL ==> more: "perldoc DBD::mysql"
    $Self->{'DatabaseDSN'} = "DBI:mysql:database=$Self->{Database};host=$Self->{DatabaseHost}";

    # The database DSN for PostgreSQL ==> more: "perldoc DBD::Pg"
    # if you want to use a local socket connection
#    $Self->{DatabaseDSN} = "DBI:Pg:dbname=$Self->{Database};";
    # if you want to use a TCP/IP connection
#    $Self->{DatabaseDSN} = "DBI:Pg:dbname=$Self->{Database};host=$Self->{DatabaseHost};";

    # The database DSN for Microsoft SQL Server - only supported if OTRS is
    # installed on Windows as well
#    $Self->{DatabaseDSN} = "DBI:ODBC:driver={SQL Server};Database=$Self->{Database};Server=$Self->{DatabaseHost},1433";

    # The database DSN for Oracle ==> more: "perldoc DBD::oracle"
#    $Self->{DatabaseDSN} = "DBI:Oracle://$Self->{DatabaseHost}:1521/$Self->{Database}";
#
#    $ENV{ORACLE_HOME}     = '/path/to/your/oracle';
#    $ENV{NLS_DATE_FORMAT} = 'YYYY-MM-DD HH24:MI:SS';
#    $ENV{NLS_LANG}        = 'AMERICAN_AMERICA.AL32UTF8';

    # ---------------------------------------------------- #
    # fs root directory
    # ---------------------------------------------------- #
    $Self->{Home} = '/opt/otrs';

    # ---------------------------------------------------- #
    # insert your own config settings "here"               #
    # config settings taken from Kernel/Config/Defaults.pm #
    # ---------------------------------------------------- #
    # $Self->{SessionUseCookie} = 0;
    # $Self->{CheckMXRecord} = 0;
    # use customer company support (reference to company, See CustomerCompany settings)
       CustomerCompanySupport => 0,
    # ---------------------------------------------------- #

    # ---------------------------------------------------- #
    # data inserted by installer                           #
    # ---------------------------------------------------- #
    # $DIBI$

    # ---------------------------------------------------- #
    # ---------------------------------------------------- #
    #                                                      #
    # end of your own config options!!!                    #
    #                                                      #
    # ---------------------------------------------------- #
    # ---------------------------------------------------- #
}

# ---------------------------------------------------- #
# needed system stuff (don't edit this)                #
# ---------------------------------------------------- #

use base qw(Kernel::Config::Defaults);

# -----------------------------------------------------#

1;

Muss ich noch was neu compilieren lassen? Habe jetzt nur nen neustart vom Server gemacht
Last edited by xoreax on 05 Jan 2017, 13:14, edited 1 time in total.
reneeb
Znuny guru
Posts: 5018
Joined: 13 Mar 2011, 09:54
Znuny Version: 6.0.x
Real Name: Renée Bäcker
Company: Perl-Services.de
Contact:

Re: Fehler OTRS 4 Kundenummer Dropdown

Post by reneeb »

Das muss

Code: Select all

$Self->{CustomerUser}->{CustomerCompanySupport} = 0;
heißen
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
xoreax
Znuny newbie
Posts: 32
Joined: 27 Jun 2014, 09:02
Znuny Version: 3.3.6

Re: Fehler OTRS 4 Kundenummer Dropdown

Post by xoreax »

Perfekt danke läuft
Post Reply