diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-03-16 20:28:56 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-03-16 20:28:56 -0400 |
commit | 512a0bda605fad4de680649f5b9d6d61fcc42148 (patch) | |
tree | 8c6a040de9c7368bd2aa4caec13d3472759a3dee /httemplate/view/quotation.html | |
parent | d916a044ea5f23d8aea57da5be483d357e7f7a47 (diff) |
RT# 74666, Added quotation description to customer quotation list and quotation view
Diffstat (limited to 'httemplate/view/quotation.html')
-rwxr-xr-x | httemplate/view/quotation.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/httemplate/view/quotation.html b/httemplate/view/quotation.html index cabf30a17..aba1f0ab3 100755 --- a/httemplate/view/quotation.html +++ b/httemplate/view/quotation.html @@ -1,6 +1,10 @@ % if ( $quotation->custnum ) { <& /elements/header-cust_main.html, view=>'quotations', custnum=>$quotation->custnum &> -<h2>Quotation #<% $quotationnum %></h2> +<h2>Quotation #<% $quotationnum %> +% if ($quotation->quotation_description) { +(<% $quotation->quotation_description %>) +% } +</h2> % } else { #eventually, header-prospect_main.html <& /elements/header.html, mt('Quotation View'), $menubar &> <& /elements/init_overlib.html &> |