summaryrefslogtreecommitdiff
path: root/httemplate/view/cust_statement.html
blob: 3e1345ed50817bca900b811c0b93cde820c953d3 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<% include("/elements/header.html",'Statement View', menubar(
  "View this customer (#$display_custnum)" => "${p}view/cust_main.cgi?$custnum",
)) %>

% if ( $FS::CurrentUser::CurrentUser->access_right('Resend invoices') ) {

%#    <A HREF="<% $p %>misc/send-statement.cgi?method=print;<% $link %>">Re-print this statement</A>

%   if ( grep { $_ ne 'POST' } $cust_statement->cust_main->invoicing_list ) { 
%#        |
        <A HREF="<% $p %>misc/send-statement.cgi?method=email;<% $link %>">Re-email this statement</A>
%   } 

%   if ( 0 ) {
%   #if ( $conf->exists('hylafax') && length($cust_statement->cust_main->fax) ) { 
        | <A HREF="<% $p %>misc/send-statement.cgi?method=fax;<% $link %>">Re-fax this statement</A>
%   } 

    <BR><BR>

% } 


% #if ( $conf->exists('invoice_latex') ) { 
% if ( 0 ) { #broken???

  <A HREF="<% $p %>view/cust_statement-pdf.cgi?<% $link %>">View typeset statement</A>
  <BR><BR>
% } 

% #if ( $cust_statement->num_cust_event ) {
% if ( 0 ) {
<A HREF="<%$p%>search/cust_event.html?statementnum=<% $cust_statement->statementnum %>">(&nbsp;View statement events&nbsp;)</A><BR><BR>
% } 

% if ( $conf->exists('invoice_html') ) { 

  <% join('', $cust_statement->print_html('', $templatename) ) %>
% } else { 

  <PRE><% join('', $cust_statement->print_text('', $templatename) ) %></PRE>
% } 

<% include('/elements/footer.html') %>
<%init>

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

#untaint statement
my($query) = $cgi->keywords;
$query =~ /^((.+)-)?(\d+)$/;
my $templatename = $2 || 'statement'; #XXX configure... via event??  eh..
my $statementnum = $3;

my $conf = new FS::Conf;

my @payby =  grep /\w/, $conf->config('payby');
#@payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH WEST COMP ))
@payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH COMP ))
  unless @payby;
my %payby = map { $_=>1 } @payby;

my $cust_statement = qsearchs({
  'select'    => 'cust_statement.*',
  'table'     => 'cust_statement',
  'addl_from' => 'LEFT JOIN cust_main USING ( custnum )',
  'hashref'   => { 'statementnum' => $statementnum },
  'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql,
});
die "Statement #$statementnum not found!" unless $cust_statement;

my $custnum = $cust_statement->custnum;
my $display_custnum = $cust_statement->cust_main->display_custnum;

my $link = "statementnum=$statementnum";
$link .= ';template='. uri_escape($templatename) if $templatename;

</%init>