diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-03-14 16:36:41 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-03-14 16:36:41 -0500 |
commit | 2ffdb485e5534df3d89bcc12d4d02d485e9b28f5 (patch) | |
tree | f4fbc6475881f7648f76b675b92aba1eea1461d2 /httemplate | |
parent | 9d83064764df266d3e693cc75cdde8478498215a (diff) |
RT#38733: Sales forecasting using quotes [percentage sign and check]
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/edit/quotation.html | 2 | ||||
-rwxr-xr-x | httemplate/search/quotation.html | 8 | ||||
-rwxr-xr-x | httemplate/view/quotation.html | 2 |
3 files changed, 7 insertions, 5 deletions
diff --git a/httemplate/edit/quotation.html b/httemplate/edit/quotation.html index 437284094..43e815c09 100644 --- a/httemplate/edit/quotation.html +++ b/httemplate/edit/quotation.html @@ -16,7 +16,7 @@ { field=>'custnum', type=>'fixed-cust_main' }, { field=>'_date', type=>'fixed-date' }, { field=>'close_date', type=>'input-date-field' }, - { field=>'confidence', type=>'text', size=>6 }, + { field=>'confidence', type=>'text', size=>3, postfix=>'%' }, ($can_disable ? { field=>'disabled', type=>'checkbox', value=>'Y'} : ()), ], #XXX some way to disable the "view all" diff --git a/httemplate/search/quotation.html b/httemplate/search/quotation.html index 16affeb02..f9b77b95f 100755 --- a/httemplate/search/quotation.html +++ b/httemplate/search/quotation.html @@ -29,9 +29,11 @@ sub { my $cust_main = shift->cust_main; $cust_main ? encode_entities($cust_main->name) : ''; }, - 'confidence', - sub { my $quot = shift; - $quot->close_date ? time2str('%b %d %Y', $quot->close_date) : ''; + sub { my $quotation = shift; + length($quotation->confidence) ? $quotation->confidence . '%' : ''; + }, + sub { my $quotation = shift; + $quotation->close_date ? time2str('%b %d %Y', $quotation->close_date) : ''; }, #\&FS::UI::Web::cust_fields, ], diff --git a/httemplate/view/quotation.html b/httemplate/view/quotation.html index 484bedd04..5646fb973 100755 --- a/httemplate/view/quotation.html +++ b/httemplate/view/quotation.html @@ -98,7 +98,7 @@ function areyousure(href, message) { </TR> % } % if (length($confidence)) { -<TR><TH STYLE="text-align: right;">Confidence:</TH><TD><% $confidence %></TD></TR> +<TR><TH STYLE="text-align: right;">Confidence:</TH><TD><% $confidence %>%</TD></TR> % } </TABLE> % } |