From: Ivan Kohler Date: Thu, 10 Oct 2013 16:02:46 +0000 (-0700) Subject: backport from 3/master to fix svc_cable viewing, RT#22009 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=a8a70873f47d54c50b4ccb74c56aba9ee8efc208 backport from 3/master to fix svc_cable viewing, RT#22009 --- diff --git a/httemplate/view/elements/svc_Common.html b/httemplate/view/elements/svc_Common.html index fe9f0658b..466fa2bb5 100644 --- a/httemplate/view/elements/svc_Common.html +++ b/httemplate/view/elements/svc_Common.html @@ -59,18 +59,22 @@ function areyousure(href) { % foreach my $f ( @$fields ) { % -% my($field, $type, $value, $hack_strict_refs); +% my($field, $type, $value); % if ( ref($f) ) { % $field = $f->{'field'}; -% $hack_strict_refs = \&{ $f->{'value'} } if $f->{'value'}; -% $value = $f->{'value'} -% ? &$hack_strict_refs($svc_x) -% : encode_entities($svc_x->$field); % $type = $f->{'type'} || 'text'; +% if ( $f->{'value_callback'} ) { +% my $hack_strict_refs = \&{ $f->{'value_callback'} }; +% $value = &$hack_strict_refs($svc_x); +% } else { +% $value = exists($f->{'value'}) +% ? $f->{'value'} +% : encode_entities($svc_x->$field); +% } % } else { % $field = $f; -% $value = encode_entities($svc_x->$field); % $type = 'text'; +% $value = encode_entities($svc_x->$field); % } % % my $columndef = $part_svc->part_svc_column($field);