diff options
author | ivan <ivan> | 2011-04-15 21:55:25 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-04-15 21:55:25 +0000 |
commit | 38919d1e68a62afea9cc9ae23b28957ea7a7987d (patch) | |
tree | 11b5d0003655fbbe23aac547fe4a056d09bba2e9 /httemplate/search/report_newtax.cgi | |
parent | 67ea829b418b1c7a97a51793ed920dba6ff36393 (diff) |
link new tax report to cust_credit_bill_pkg for credits, RT#12332
Diffstat (limited to 'httemplate/search/report_newtax.cgi')
-rwxr-xr-x | httemplate/search/report_newtax.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/search/report_newtax.cgi b/httemplate/search/report_newtax.cgi index 767d8cf14..4ec3f4da4 100755 --- a/httemplate/search/report_newtax.cgi +++ b/httemplate/search/report_newtax.cgi @@ -49,7 +49,7 @@ <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"></TD> <% $tax->{base} ? qq!<TD CLASS="grid" BGCOLOR="$bgcolor"></TD>! : '' %> <TD CLASS="grid" BGCOLOR="<% $bgcolor %>" ALIGN="right"> - <A HREF="<% $baselink. $link %>;istax=1;iscredit=rate"><% $money_char %><% sprintf('%.2f', $tax->{'credit'} ) %></A> + <A HREF="<% $creditlink. $link %>;istax=1;iscredit=rate"><% $money_char %><% sprintf('%.2f', $tax->{'credit'} ) %></A> </TD> <% !($tax->{base}) ? qq!<TD CLASS="grid" BGCOLOR="$bgcolor"></TD>! : '' %> </TR> @@ -203,5 +203,6 @@ my $dateagentlink = "begin=$beginning;end=$ending"; $dateagentlink .= ';agentnum='. $cgi->param('agentnum') if length($agentname); my $baselink = $p. "search/cust_bill_pkg.cgi?$dateagentlink"; +my $creditlink = $p. "search/cust_credit_bill_pkg.html?$dateagentlink"; </%init> |