diff options
author | ivan <ivan> | 2003-11-06 13:56:52 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-11-06 13:56:52 +0000 |
commit | d0a8e637a18146d9df0099e9ef33a88942a2e2e0 (patch) | |
tree | 3a9a7d2910e27566c4915b94fe1db273a8b423df | |
parent | cbd796c94cce087a66acfb662f62ae5d4891cec6 (diff) |
link to customer, don't show custnum
-rwxr-xr-x | httemplate/search/report_receivables.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/search/report_receivables.cgi b/httemplate/search/report_receivables.cgi index 241ca581c..9938abdc6 100755 --- a/httemplate/search/report_receivables.cgi +++ b/httemplate/search/report_receivables.cgi @@ -172,10 +172,10 @@ END </TR> <% while ( my $row = $sth->fetchrow_hashref() ) { %> <TR> - <TD><%= $row->{'custnum'} %>: + <TD><A HREF="<% $p %>view/cust_main.cgi?<%= $row->{'custnum'} %>"> <%= $row->{'company'} ? $row->{'company'}. ' (' : '' %> <%= $row->{'last'}. ', '. $row->{'first'} %> - <%= $row->{'company'} ? ')' : '' %> + <%= $row->{'company'} ? ')' : '' %></A> </TD> <TD ALIGN="right">$<%= sprintf("%.2f", $row->{'owed_0_30'} ) %></TD> <TD ALIGN="right">$<%= sprintf("%.2f", $row->{'owed_30_60'} ) %></TD> |