X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Fquotations.html;h=b517a5cde0f1472ff78aae51cbcaeeef4104077c;hb=50cc2b95894b151599b458462dcd83edb68980ce;hp=b891436234e3d18cd8078f23218dd4098aee1b3e;hpb=512a0bda605fad4de680649f5b9d6d61fcc42148;p=freeside.git diff --git a/httemplate/elements/quotations.html b/httemplate/elements/quotations.html index b89143623..b517a5cde 100644 --- a/httemplate/elements/quotations.html +++ b/httemplate/elements/quotations.html @@ -11,10 +11,12 @@ # - <% mt('Date') |h %> <% mt('Setup') |h %> <% mt('Recurring') |h %> + <% mt('Date') |h %> <% mt('Description') |h %> + <% mt('Close date') |h %> + <% mt('Confidence') |h %> @@ -28,10 +30,12 @@ % $quotation->quotationnum. '">'; <% $a %><% $quotation->quotationnum %> - <% $a %><% time2str($date_format, $quotation->_date) |h %> - <% $a %><% $quotation->total_setup |h %> - <% $a %><% $quotation->total_recur |h %> + <% $a %><% $money_char.$quotation->total_setup |h %> + <% $a %><% $money_char.$quotation->total_recur |h %> + <% $a %><% time2str('%b %d %Y', $quotation->_date) |h %> <% $a %><% $quotation->quotation_description |h %> + <% $a %><% $quotation->close_date ? time2str('%b %d %Y', $quotation->close_date) : '' |h %> + <% $a %><% length($quotation->confidence) ? $quotation->confidence . '%' : '' |h %> <% $opt{convert_label} || 'Convert to customer' %> % } @@ -49,6 +53,8 @@ my $curuser = $FS::CurrentUser::CurrentUser; my $conf = new FS::Conf; +my $money_char = $conf->config('money_char') || '$'; + my $date_format = $conf->config('date_format') || '%m/%d/%Y'; my %opt = @_;