diff options
author | ivan <ivan> | 2009-10-07 23:44:26 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-10-07 23:44:26 +0000 |
commit | 06187016fd78ba41fb82846b9e8d461405f316b6 (patch) | |
tree | 1a9106fd1da791f2270ad1e502c5951495ab322d /httemplate/view/cust_statement.html | |
parent | cb4443b58fb55f5c2fe28f031616e80922a0431c (diff) |
naming follow-up notices from the event rather than creting a slew of separate templates, RT#5217
Diffstat (limited to 'httemplate/view/cust_statement.html')
-rwxr-xr-x | httemplate/view/cust_statement.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/httemplate/view/cust_statement.html b/httemplate/view/cust_statement.html index b078c9d07..74c80d3bc 100755 --- a/httemplate/view/cust_statement.html +++ b/httemplate/view/cust_statement.html @@ -4,16 +4,16 @@ % if ( $FS::CurrentUser::CurrentUser->access_right('Resend invoices') ) { -%# <A HREF="<% $p %>misc/print-invoice.cgi?<% $link %>">Re-print this statement</A> +%# <A HREF="<% $p %>misc/send-statement.cgi?method=print;<% $link %>">Re-print this statement</A> % if ( grep { $_ ne 'POST' } $cust_statement->cust_main->invoicing_list ) { %# | - <A HREF="<% $p %>misc/email-invoice.cgi?<% $link %>">Re-email this statement</A> + <A HREF="<% $p %>misc/send-statement.cgi?method=email;<% $link %>">Re-email this statement</A> % } % if ( 0 ) { % #if ( $conf->exists('hylafax') && length($cust_statement->cust_main->fax) ) { - | <A HREF="<% $p %>misc/fax-invoice.cgi?<% $link %>">Re-fax this statement</A> + | <A HREF="<% $p %>misc/send-statement.cgi?method=fax;<% $link %>">Re-fax this statement</A> % } <BR><BR> @@ -73,6 +73,7 @@ die "Statement #$statementnum not found!" unless $cust_statement; my $custnum = $cust_statement->custnum; my $display_custnum = $cust_statement->cust_main->display_custnum; -my $link = $templatename ? "$templatename-$statementnum" : $statementnum; +my $link = "statementnum=$statementnum"; +$link .= ';template='. uri_escape($templatename) if $templatename; </%init> |