X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fmisc%2Fqual.html;h=6df8daae4408e0edaa4e3a4e6f928fc61a550f04;hp=69a5f8b74253dca35e58599f1d843d0cfb95f749;hb=75e11f1d1a5ced24496b5732e290f7762403feb8;hpb=8468ce6abd28b145bfde14a210a166cca46115dc diff --git a/httemplate/misc/qual.html b/httemplate/misc/qual.html index 69a5f8b74..6df8daae4 100644 --- a/httemplate/misc/qual.html +++ b/httemplate/misc/qual.html @@ -2,52 +2,69 @@ <% include('/elements/error.html') %> -
+ <% ntable("#cccccc", 2) %> <% include('/elements/tr-td-label.html', - 'cgi' => $cgi, - 'label' => 'Qualify using', - 'cell_style' => 'font-weight: bold', - 'id' => 'exportnum', - ) + 'cgi' => $cgi, + 'label' => 'Qualify using', + #'cell_style' => 'font-weight: bold', + 'id' => 'exportnum', + ) %> <% include('/elements/select.html', - 'cgi' => $cgi, - 'field' => 'exportnum', - 'options' => \@export_options, - 'labels' => $export_labels, - 'curr_value' => $cgi->param('exportnum'), - ) + 'cgi' => $cgi, + 'field' => 'exportnum', + 'options' => \@export_options, + 'labels' => $export_labels, + 'curr_value' => $exportnum, + ) %> <% include('/elements/tr-input-text.html', - 'cgi' => $cgi, - 'label' => 'Service Telephone Number', - 'field' => 'phonenum', - 'size' => '12', - 'value' => $cgi->param('phonenum'), + 'cgi' => $cgi, + 'label' => 'Service phone number', + 'field' => 'phonenum', + 'size' => '12', + 'value' => scalar($cgi->param('phonenum')), + + 'valign' => 'middle', + 'colspan' => 6, + 'prefix' => '
', + 'postfix' => ''. join('
', + 'Line-share (non dry loops) - always fill in', + 'Dry loops - always leave empty', + ). '
', ) %> <% include('/elements/tr-select-cust_location.html', - 'cgi' => $cgi, - $table => $cust_main_or_prospect_main, - 'alt_format' => $conf->exists('qual-alt-address-format') ? 1 : 0, - 'is_optional' => 1, - 'no_bold' => 1, + 'cgi' => $cgi, + $table => $cust_main_or_prospect_main, + 'alt_format' => $conf->exists('qual-alt_address_format'), + 'disable_empty' => $conf->exists('qual-alt_address_format'), + 'no_bold' => 1, + #required for ikano.. config? 'is_optional' => 1, ) %>
- +
@@ -84,5 +101,10 @@ foreach my $export ( @exports ) { push @export_options, $export->exportnum; $export_labels->{$export->exportnum} = $export->exportname; } +my $exportnum = $cgi->param('error') + ? scalar($cgi->param('exportnum')) + : scalar(@exports) == 1 + ? $exports[0]->exportnum + : '';