diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-07-16 15:43:42 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-07-16 15:43:42 -0500 |
commit | fe25108857542f5d7c460ab831bc782f608179fa (patch) | |
tree | 477ecff3a1d8076f80b50c636189f6f53ae1f67e /httemplate/edit/part_pkg.cgi | |
parent | c91974c5178828304d723d15f0b6405d173fa707 (diff) |
RT#38973: Bill for time worked on ticket resolution [checkpoint, not ready for backport]
Diffstat (limited to 'httemplate/edit/part_pkg.cgi')
-rwxr-xr-x | httemplate/edit/part_pkg.cgi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/httemplate/edit/part_pkg.cgi b/httemplate/edit/part_pkg.cgi index f2c4aacef..2c8477d8e 100755 --- a/httemplate/edit/part_pkg.cgi +++ b/httemplate/edit/part_pkg.cgi @@ -988,6 +988,16 @@ my $html_bottom = sub { : '' ). '>'; + } elsif ( $href->{$field}{'type'} eq 'select-rt-customfield' ) { + + $html .= include('/elements/select-rt-customfield.html', + 'name' => $layer.'__'.$field, + 'curr_value' => $options{$field}, + map { $_ => $href->{$field}{$_} } + grep { $_ !~ /^(name|type|parse)$/ } + keys %{ $href->{$field} } + ); + } elsif ( $href->{$field}{'type'} eq 'select-rate' ) { $html .= include('/elements/select-rate.html', |