[freeside-commits] freeside/httemplate/view/elements cust_bill-typeset, NONE, 1.1

Ivan,,, ivan at wavetail.420.am
Mon Aug 15 13:59:08 PDT 2011


Update of /home/cvs/cvsroot/freeside/httemplate/view/elements
In directory wavetail.420.am:/tmp/cvs-serv17043/elements

Added Files:
	cust_bill-typeset 
Log Message:
consolate cust_bill-(ps|pdf).cgi into elements/cust_bill-typeset

--- NEW FILE: cust_bill-typeset ---
<% $content %>\
<%init>

die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('View invoices');

my $type = shift;

my( $invnum, $template, $notice_name );
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') || 'Invoice' );
}

my $conf = new FS::Conf;

my %opt = (
  'unsquelch_cdr' => $conf->exists('voip-cdr_email'),
  'template'      => $template,
  'notice_name'   => $notice_name,
);

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;

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' );

</%init>



More information about the freeside-commits mailing list