diff options
author | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
commit | c82d349f864e6bd9f96fd1156903bc1f7193a203 (patch) | |
tree | e117a87533656110b6acd56fc0ca64289892a9f5 /httemplate/elements/select-terms.html | |
parent | 74e058c8a010ef6feb539248a550d0bb169c1e94 (diff) |
This commit was manufactured by cvs2svn to create tag 'TORRUS_1_0_9'.TORRUS_1_0_9
Diffstat (limited to 'httemplate/elements/select-terms.html')
-rw-r--r-- | httemplate/elements/select-terms.html | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/httemplate/elements/select-terms.html b/httemplate/elements/select-terms.html deleted file mode 100644 index 1ca586e60..000000000 --- a/httemplate/elements/select-terms.html +++ /dev/null @@ -1,41 +0,0 @@ -<SELECT NAME = "invoice_terms" - ID = "invoice_terms" - <% $opt{'disabled'} ? 'DISABLED' : ''%> -> -# #false laziness w/select-table.html -% while ( @pre_options ) { -% my $pre_opt = shift(@pre_options); -% my $pre_label = shift(@pre_options); -% my $selected = # ( ref($value) && $value->{$pre_opt} ) || -% ( $curr_value eq $pre_opt ); - <OPTION VALUE="<% $pre_opt %>" - <% $selected ? 'SELECTED' : '' %> - ><% $pre_label %> -% } - - <OPTION VALUE="<% $empty_value %>"><% $empty_label %> -% foreach my $term ( @terms ) { - <OPTION VALUE="<% $term %>" <% $curr_value eq $term ? ' SELECTED' : '' %>><% $term %> -% } -</SELECT> -<%init> - -my %opt = @_; -my $curr_value = $opt{'curr_value'}; -my $conf = new FS::Conf; - -my $empty_label = - $opt{'empty_label'} - || 'Default ('. - ($conf->config('invoice_default_terms') || 'Payable upon receipt'). - ')'; - -my $empty_value = $opt{'empty_value'} || ''; - -my @terms = ( 'Payable upon receipt', - ( map "Net $_", 0, 10, 15, 20, 30, 45, 60, 90 ), - ); - -my @pre_options = $opt{pre_options} ? @{ $opt{pre_options} } : (); - -</%init> |