summaryrefslogtreecommitdiff
path: root/httemplate/misc/post_fsinc-invoice.cgi
blob: 94eaf667e38c04f0ffff4e6ec30d6d77ad165fc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
% my $title = $error ? 'Error printing and mailing invoice' : 'Invoice printed and mailed';
<% include('/elements/header-popup.html', $title ) %>
<DIV STYLE="text-align: center;">
<SPAN STYLE="color: red; font-weight: bold;"><% $error %></SPAN><BR>
<BUTTON TYPE="button" onClick="parent.cClick();">Close</BUTTON>
</DIV>
<% include('/elements/footer-popup.html') %>

<%init>

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

my $invnum      = $cgi->param('invnum');

my $template    = $cgi->param('template');
my $notice_name = $cgi->param('notice_name') if $cgi->param('notice_name');
my $no_coupon   = $cgi->param('no_coupon');

#XXX agent-virt
my $cust_bill = qsearchs('cust_bill',{'invnum'=>$invnum})
  or die "Unknown invnum\n";

my $mode;
if ( $cgi->param('mode') =~ /^(\d+)$/ ) {
  $mode = $1;
}
$cust_bill->set('mode' => $mode) if $mode;

#these methods die instead of return errors, so, handle that without a backtrace
local $@;
my $letter_id = 
  eval { $cust_bill->postal_mail_fsinc( 'template'    => $template,
                                        'notice_name' => $notice_name,
                                        'no_coupon'   => $no_coupon,
                                      ); 
       };
my $error = "$@";

$error ||= 'Unknown print and mail error: no letter ID returned'
  unless $letter_id;

</%init>