Search found 2 matches

by nate
26 Jan 2012, 22:32
Forum: Help
Topic: Customizing the small ticket overview view
Replies: 1
Views: 690

Re: Customizing the small ticket overview view

Nevermind. I got it explained to me.

In case it's valuable to anyone else searching:

Code: Select all

my %User = $Self->{CustomerUserObject}->CustomerUserDataGet(
                    User => $Article{CustomerUserID},

$Article{City} = $User{UserCity};
were the relevant bits.
by nate
26 Jan 2012, 20:04
Forum: Help
Topic: Customizing the small ticket overview view
Replies: 1
Views: 690

Customizing the small ticket overview view

I'm looking to customize the small ticket view. What I would like to do is to change the CustomerID column to not show the customer title/name in the second line but rather to show the customer's city name. So basically I want it to show CustomerID + City rather than CustomerID + CustomerName. I'm g...