X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fselect-terms.html;h=eda439a4c20a521c4a26331685e5cb999ccc0e10;hp=52f9fb54260a83c255fc70bbfdbdfeedcf28042e;hb=a983ba996fbd3d432443eff8afc4b09bb48ec443;hpb=40a7b3dc653e099f7bd0bd762b649b04c4432db2 diff --git a/httemplate/elements/select-terms.html b/httemplate/elements/select-terms.html index 52f9fb542..eda439a4c 100644 --- a/httemplate/elements/select-terms.html +++ b/httemplate/elements/select-terms.html @@ -26,15 +26,15 @@ my $conf = new FS::Conf; my $empty_label = $opt{'empty_label'} - || 'Default ('. - ($conf->config('invoice_default_terms') || 'Payable upon receipt'). - ')'; + || emt('Default').' ('. + ( $conf->config('invoice_default_terms', $opt{'agentnum'}) + || emt('Payable upon receipt') + ). + ')'; my $empty_value = $opt{'empty_value'} || ''; -my @terms = ( 'Payable upon receipt', - ( map "Net $_", 0, 10, 15, 20, 30, 45, 60 ), - ); +my @terms = map emt($_), @FS::Conf::invoice_terms; my @pre_options = $opt{pre_options} ? @{ $opt{pre_options} } : ();