Skip to content

Commit

Permalink
Issue #2575: Passing customer interface param to display value render.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhaerter committed Oct 24, 2023
1 parent 3c9775f commit b6c0d48
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions Kernel/Modules/CustomerTicketOverview.pm
Original file line number Diff line number Diff line change
Expand Up @@ -812,6 +812,7 @@ sub ShowTicketStatus {
Value => $Value,
ValueMaxChars => 20,
LayoutObject => $LayoutObject,
CustomerInterface => 1,
);

$LayoutObject->Block(
Expand Down
2 changes: 2 additions & 0 deletions Kernel/Modules/CustomerTicketSearch.pm
Original file line number Diff line number Diff line change
Expand Up @@ -708,6 +708,7 @@ sub Run {
Value => $Info{$Header},
HTMLOutput => 0,
LayoutObject => $LayoutObject,
CustomerInterface => 1,
);
push @Data, $ValueStrg->{Value};

Expand Down Expand Up @@ -1277,6 +1278,7 @@ sub Run {
Value => $Data{ 'DynamicField_' . $DynamicFieldConfig->{Name} },
ValueMaxChars => 20,
LayoutObject => $LayoutObject,
CustomerInterface => 1,
);

$LayoutObject->Block(
Expand Down
1 change: 1 addition & 0 deletions Kernel/Modules/CustomerTicketZoom.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1977,6 +1977,7 @@ sub _Mask {
Value => $Value,
ValueMaxChars => 25,
LayoutObject => $LayoutObject,
CustomerInterface => 1,
);

my $Label = $DynamicFieldConfig->{Label};
Expand Down
1 change: 1 addition & 0 deletions Kernel/Output/HTML/TicketOverview/CustomerList.pm
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ sub Run {
Value => $Value,
ValueMaxChars => 20,
LayoutObject => $LayoutObject,
CustomerInterface => 1,
);
next DYNAMICFIELD if ( !defined $ValueStrg->{Value} || $ValueStrg->{Value} eq '' );

Expand Down
1 change: 1 addition & 0 deletions Kernel/Output/HTML/TicketZoom/Customer/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ sub ArticleMetaFields {
Value => $Value,
ValueMaxChars => 160,
LayoutObject => $LayoutObject,
CustomerInterface => 1,
);

my $Label = $DynamicFieldConfig->{Label};
Expand Down

0 comments on commit b6c0d48

Please sign in to comment.