invoice configurations, #24723
[freeside.git] / httemplate / view / elements / cust_bill-typeset
1 <% $content %>\
2 <%init>
3
4 die "access denied"
5   unless $FS::CurrentUser::CurrentUser->access_right('View invoices');
6
7 my $type = shift;
8
9 my( $invnum, $mode, $template, $notice_name );
10 my($query) = $cgi->keywords;
11 if ( $query =~ /^((.+)-)?(\d+)(.pdf)?$/ ) { #probably not necessary anymore?
12   $template = $2;
13   $invnum = $3;
14   $notice_name = 'Invoice';
15 } else {
16   $invnum = $cgi->param('invnum');
17   $invnum =~ s/\.pdf//i; #probably not necessary anymore
18   $template = $cgi->param('template');
19   $notice_name = $cgi->param('notice_name');
20   $mode = $cgi->param('mode');
21 }
22
23 my $conf = new FS::Conf;
24
25 my %opt = (
26   'unsquelch_cdr' => $conf->exists('voip-cdr_email'),
27   'template'      => $template,
28   'notice_name'   => $notice_name,
29 );
30
31 my $cust_bill = qsearchs({
32   'select'    => 'cust_bill.*',
33   'table'     => 'cust_bill',
34   'addl_from' => 'LEFT JOIN cust_main USING ( custnum )',
35   'hashref'   => { 'invnum' => $invnum },
36   'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql,
37 });
38 die "Invoice #$invnum not found!" unless $cust_bill;
39
40 $cust_bill->set(mode => $mode);
41
42 my $method = "print_$type";
43
44 my $content = $cust_bill->$method(\%opt);
45
46 my %mime = ( 'pdf' => 'application/pdf',
47              'ps'  => 'application/postscript',
48            );
49
50 http_header('Content-Type' => $mime{$type} );
51 http_header('Content-Disposition' => "filename=$invnum.$type" );
52 http_header('Content-Length' => length($content) );
53 http_header('Cache-control' => 'max-age=60' );
54
55 </%init>