<% $content %>\ <%init> die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('View invoices'); my $type = shift; my( $invnum, $mode, $template, $notice_name, $no_coupon ); my($query) = $cgi->keywords; if ( $query =~ /^((.+)-)?(\d+)(.pdf)?$/ ) { #probably not necessary anymore? $template = $2; $invnum = $3; $notice_name = 'Invoice'; } else { $invnum = $cgi->param('invnum'); $invnum =~ s/\.pdf//i; #probably not necessary anymore $template = $cgi->param('template'); $notice_name = $cgi->param('notice_name'); $mode = $cgi->param('mode'); $no_coupon = $cgi->param('no_coupon'); } my $conf = new FS::Conf; my %opt = ( 'unsquelch_cdr' => $conf->exists('voip-cdr_email'), 'template' => $template, 'notice_name' => $notice_name, 'no_coupon' => $no_coupon, ); my $cust_bill = qsearchs({ 'select' => 'cust_bill.*', 'table' => 'cust_bill', 'addl_from' => 'LEFT JOIN cust_main USING ( custnum )', 'hashref' => { 'invnum' => $invnum }, 'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql, }); die "Invoice #$invnum not found!" unless $cust_bill; $cust_bill->set(mode => $mode); my $method = "print_$type"; my $content = $cust_bill->$method(\%opt); my %mime = ( 'pdf' => 'application/pdf', 'ps' => 'application/postscript', ); http_header('Content-Type' => $mime{$type} ); http_header('Content-Disposition' => "filename=$invnum.$type" ); http_header('Content-Length' => length($content) ); http_header('Cache-control' => 'max-age=60' );