From 9e431d19bdbc1194db6dcef31d1317cbf2a2176c Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Thu, 6 Jun 2013 21:49:26 -0700 Subject: [PATCH] restore select-hardware field behavior, from #21442 --- httemplate/edit/elements/part_svc_column.html | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/httemplate/edit/elements/part_svc_column.html b/httemplate/edit/elements/part_svc_column.html index fbea9bd6d..1c5b45314 100644 --- a/httemplate/edit/elements/part_svc_column.html +++ b/httemplate/edit/elements/part_svc_column.html @@ -207,15 +207,20 @@ that field. NAME="<%$name%>" ID="<%$name%>" VALUE="<%$value%>"> -% # inventory class selection +% my $mode = 'inventory'; +% my $multiple = 1; +% if ( $def->{'type'} eq 'select-hardware' ) { +% $mode = 'hardware'; +% $multiple = 0; +% } <& /elements/select-table.html, 'field' => $name.'_classnum', 'id' => $name.'_select', - 'table' => 'inventory_class', + 'table' => $mode.'_class', 'name_col' => 'classname', 'curr_value' => $value, - 'empty_label' => 'Select inventory class', - 'multiple' => 1, + 'empty_label' => "Select $mode class", + 'multiple' => 0, &> % } -- 2.11.0