RT# 82137 - default payment amount now has processing fee in total if processing...
[freeside.git] / httemplate / elements / select-lnp_status.html
1 <SELECT NAME = "<% $opt{'element_name'} || $opt{'field'} || 'lnp_status' %>"
2         <% $opt{'element_etc'} %>
3 >
4 % unless ( $opt{'disable_empty'} ) {
5     <OPTION VALUE=""><% $opt{'empty_label'} || '' %></OPTION>
6 % }
7 % foreach my $selopt ( keys %seloptions ) {
8 %  my $selected = ($selopt eq $opt{'curr_value'}) ? 'SELECTED' : '';
9     <OPTION VALUE="<%$selopt%>" <% $selected %>><% $seloptions{$selopt} %></OPTION>
10 % }
11 </SELECT>
12 <%init>
13
14 my %opt = @_;
15
16 my %seloptions = ( 
17                 'native' => 'Native',
18                 'portedin' => 'Ported In',
19                 'portingin' => 'Porting In',
20                 'portingout' => 'Porting Out',
21                 'portin-reject' => 'Port-In Reject',
22                 'portout-reject' => 'Port-Out Reject',
23             );
24 </%init>