diff options
author | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
commit | c82d349f864e6bd9f96fd1156903bc1f7193a203 (patch) | |
tree | e117a87533656110b6acd56fc0ca64289892a9f5 /httemplate/misc/send-statement.cgi | |
parent | 74e058c8a010ef6feb539248a550d0bb169c1e94 (diff) |
This commit was manufactured by cvs2svn to create tag 'TORRUS_1_0_9'.TORRUS_1_0_9
Diffstat (limited to 'httemplate/misc/send-statement.cgi')
-rwxr-xr-x | httemplate/misc/send-statement.cgi | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/httemplate/misc/send-statement.cgi b/httemplate/misc/send-statement.cgi deleted file mode 100755 index e363fbd09..000000000 --- a/httemplate/misc/send-statement.cgi +++ /dev/null @@ -1,28 +0,0 @@ -<% $cgi->redirect("${p}view/cust_main.cgi?$custnum") %> -<%once> - -my %method = map { $_=>1 } qw( email print fax_invoice ); - -</%once> -<%init> - -die "access denied" - unless $FS::CurrentUser::CurrentUser->access_right('Resend invoices'); - -my $statementnum = $cgi->param('statementnum'); -my $template = $cgi->param('template') || 'statement'; #XXX configure... via event?? eh.. -my $notice_name = $cgi->param('notice_name') if $cgi->param('notice_name'); -my $method = $cgi->param('method'); - -$method .= '_invoice' if $method eq 'fax'; #! - -die "unknown method $method" unless $method{$method}; - -my $cust_statement = qsearchs('cust_statement',{'statementnum'=>$statementnum}); -die "Can't find statement!\n" unless $cust_statement; - -$cust_statement->$method({ 'template' => $template }); - -my $custnum = $cust_statement->getfield('custnum'); - -</%init> |