diff options
author | ivan <ivan> | 2003-11-06 13:56:50 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-11-06 13:56:50 +0000 |
commit | 0d83329036f8768c2bc974c3d8713a6089479610 (patch) | |
tree | cbe383cea764863bd6a83280fc18b313dd7534e1 | |
parent | 4d88d3dc9debe254dddf996a9df936c482681844 (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> |