more granular ACLs for posting check vs. cash payments, processing credit card vs...
[freeside.git] / httemplate / view / cust_bill.cgi
1 <% include("/elements/header.html",'Invoice View', menubar(
2   "View this customer (#$display_custnum)" => "${p}view/cust_main.cgi?$custnum",
3 )) %>
4
5 % if ( $conf->exists('deleteinvoices')
6 %      && $curuser->access_right('Delete invoices' )
7 %    )
8 % {
9
10     <SCRIPT TYPE="text/javascript">
11     function areyousure(href, message) {
12       if (confirm(message) == true)
13         window.location.href = href;
14     }
15     </SCRIPT>
16
17     <A HREF  = "javascript:areyousure(
18                   '<%$p%>misc/delete-cust_bill.html?<% $invnum %>',
19                   'Are you sure you want to delete this invoice?'
20                )"
21        TITLE = "Delete this invoice from the database completely"
22     >Delete this invoice</A>
23     <BR><BR>
24
25 % }
26
27 % if ( $cust_bill->owed > 0
28 %      && scalar( grep $payby{$_}, qw(BILL CASH WEST MCRD) )
29 %      && $curuser->access_right(['Post payment', 'Post check payment', 'Post cash payment'])
30 %      && ! $conf->exists('pkg-balances')
31 %    )
32 % {
33 %     my $s = 0;
34
35       Post 
36
37 %     if ( $payby{'BILL'} && $curuser->access_right(['Post payment', 'Post check payment']) ) { 
38           <% $s++ ? ' | ' : '' %>
39           <A HREF="<% $p %>edit/cust_pay.cgi?payby=BILL;invnum=<% $invnum %>">check</A>
40 %     } 
41
42 %     if ( $payby{'CASH'} && $curuser->access_right(['Post payment', 'Post cash payment']) ) { 
43           <% $s++ ? ' | ' : '' %>
44           <A HREF="<% $p %>edit/cust_pay.cgi?payby=CASH;invnum=<% $invnum %>">cash</A>
45 %     } 
46
47 %     if ( $payby{'WEST'} && $curuser->access_right(['Post payment']) ) { 
48           <% $s++ ? ' | ' : '' %>
49           <A HREF="<% $p %>edit/cust_pay.cgi?payby=WEST;invnum=<% $invnum %>">Western Union</A>
50 %     } 
51
52 %     if ( $payby{'MCRD'} && $curuser->access_right(['Post payment']) ) { 
53           <% $s++ ? ' | ' : '' %>
54           <A HREF="<% $p %>edit/cust_pay.cgi?payby=MCRD;invnum=<% $invnum %>">manual credit card</A>
55 %     } 
56
57       payment against this invoice<BR><BR>
58
59 % } 
60
61 % if ( $curuser->access_right('Resend invoices') ) {
62
63     <A HREF="<% $p %>misc/send-invoice.cgi?method=print;<% $link %>">Re-print this invoice</A>
64
65 %   if ( grep { $_ ne 'POST' } $cust_bill->cust_main->invoicing_list ) { 
66         | <A HREF="<% $p %>misc/send-invoice.cgi?method=email;<% $link %>">Re-email this invoice</A>
67 %   } 
68
69 %   if ( $conf->exists('hylafax') && length($cust_bill->cust_main->fax) ) { 
70         | <A HREF="<% $p %>misc/send-invoice.cgi?method=fax;<% $link %>">Re-fax this invoice</A>
71 %   } 
72
73     <BR><BR>
74
75 % } 
76
77 % if ( $conf->exists('invoice_latex') ) { 
78
79   <A HREF="<% $p %>view/cust_bill-pdf.cgi?<% $link %>">View typeset invoice PDF</A>
80   <BR><BR>
81 % } 
82
83 % my $br = 0;
84 % if ( $cust_bill->num_cust_event ) { $br++;
85 <A HREF="<%$p%>search/cust_event.html?invnum=<% $cust_bill->invnum %>">(&nbsp;View invoice events&nbsp;)</A> 
86 % } 
87
88 % if ( $cust_bill->num_cust_bill_event ) { $br++;
89 <A HREF="<%$p%>search/cust_bill_event.cgi?invnum=<% $cust_bill->invnum %>">(&nbsp;View deprecated, old-style invoice events&nbsp;)</A> 
90 % }
91
92 <% $br ? '<BR><BR>' : '' %>
93
94 % if ( $conf->exists('invoice_html') ) { 
95   <% join('', $cust_bill->print_html(\%opt) ) %>
96 % } else { 
97   <PRE><% join('', $cust_bill->print_text(\%opt) ) %></PRE>
98 % } 
99
100 <% include('/elements/footer.html') %>
101 <%init>
102
103 my $curuser = $FS::CurrentUser::CurrentUser;
104
105 die "access denied"
106   unless $curuser->access_right('View invoices');
107
108 my( $invnum, $template, $notice_name );
109 my($query) = $cgi->keywords;
110 if ( $query =~ /^((.+)-)?(\d+)$/ ) {
111   $template = $2;
112   $invnum = $3;
113   $notice_name = 'Invoice';
114 } else {
115   $invnum = $cgi->param('invnum');
116   $template = $cgi->param('template');
117   $notice_name = $cgi->param('notice_name');
118 }
119
120 my $conf = new FS::Conf;
121
122 my %opt = (
123   'unsquelch_cdr' => $conf->exists('voip-cdr_email'),
124   'template'      => $template,
125   'notice_name'   => $notice_name,
126 );
127
128 my @payby =  grep /\w/, $conf->config('payby');
129 #@payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH WEST COMP ))
130 @payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH COMP ))
131   unless @payby;
132 my %payby = map { $_=>1 } @payby;
133
134 my $cust_bill = qsearchs({
135   'select'    => 'cust_bill.*',
136   'table'     => 'cust_bill',
137   'addl_from' => 'LEFT JOIN cust_main USING ( custnum )',
138   'hashref'   => { 'invnum' => $invnum },
139   'extra_sql' => ' AND '. $curuser->agentnums_sql,
140 });
141 die "Invoice #$invnum not found!" unless $cust_bill;
142
143 my $custnum = $cust_bill->custnum;
144 my $display_custnum = $cust_bill->cust_main->display_custnum;
145
146 #my $printed = $cust_bill->printed;
147
148 my $link = "invnum=$invnum";
149 $link .= ';template='. uri_escape($template) if $template;
150 $link .= ';notice_name='. $notice_name if $notice_name;
151
152 </%init>