1 <% $cust_bill->print_ps(\%opt) %>
5 unless $FS::CurrentUser::CurrentUser->access_right('View invoices');
7 my( $invnum, $template, $notice_name );
8 my($query) = $cgi->keywords;
9 if ( $query =~ /^((.+)-)?(\d+)(.pdf)?$/ ) {
12 $notice_name = 'Invoice';
14 $invnum = $cgi->param('invnum');
15 $template = $cgi->param('template');
16 $notice_name = ( $cgi->param('notice_name') || 'Invoice' );
20 'template' => $template,
21 'notice_name' => $notice_name,
24 my $cust_bill = qsearchs({
25 'select' => 'cust_bill.*',
26 'table' => 'cust_bill',
27 'addl_from' => 'LEFT JOIN cust_main USING ( custnum )',
28 'hashref' => { 'invnum' => $invnum },
29 'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql,
31 die "Invoice #$invnum not found!" unless $cust_bill;
33 http_header('Content-Type' => 'application/postscript' );