delete invoices, RT#4048
[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')
30 %      && ! $conf->exists('pkg-balances')
31 %    )
32 % {
33 %     my $s = 0;
34
35       Post 
36
37 %     if ( $payby{'BILL'} ) { 
38           <% $s++ ? ' | ' : '' %>
39           <A HREF="<% $p %>edit/cust_pay.cgi?payby=BILL;invnum=<% $invnum %>">check</A>
40 %     } 
41
42 %     if ( $payby{'CASH'} ) { 
43           <% $s++ ? ' | ' : '' %>
44           <A HREF="<% $p %>edit/cust_pay.cgi?payby=CASH;invnum=<% $invnum %>">cash</A>
45 %     } 
46
47 %     if ( $payby{'WEST'} ) { 
48           <% $s++ ? ' | ' : '' %>
49           <A HREF="<% $p %>edit/cust_pay.cgi?payby=WEST;invnum=<% $invnum %>">Western Union</A>
50 %     } 
51
52 %     if ( $payby{'MCRD'} ) { 
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/print-invoice.cgi?<% $link %>">Re-print this invoice</A>
64
65 %   if ( grep { $_ ne 'POST' } $cust_bill->cust_main->invoicing_list ) { 
66         | <A HREF="<% $p %>misc/email-invoice.cgi?<% $link %>">Re-email this invoice</A>
67 %   } 
68
69 %   if ( $conf->exists('hylafax') && length($cust_bill->cust_main->fax) ) { 
70         | <A HREF="<% $p %>misc/fax-invoice.cgi?<% $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 %>.pdf">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
96   <% join('', $cust_bill->print_html('', $templatename) ) %>
97 % } else { 
98
99   <PRE><% join('', $cust_bill->print_text('', $templatename) ) %></PRE>
100 % } 
101
102 <% include('/elements/footer.html') %>
103 <%init>
104
105 my $curuser = $FS::CurrentUser::CurrentUser;
106
107 die "access denied"
108   unless $curuser->access_right('View invoices');
109
110 #untaint invnum
111 my($query) = $cgi->keywords;
112 $query =~ /^((.+)-)?(\d+)$/;
113 my $templatename = $2;
114 my $invnum = $3;
115
116 my $conf = new FS::Conf;
117
118 my @payby =  grep /\w/, $conf->config('payby');
119 #@payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH WEST COMP ))
120 @payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH COMP ))
121   unless @payby;
122 my %payby = map { $_=>1 } @payby;
123
124 my $cust_bill = qsearchs({
125   'select'    => 'cust_bill.*',
126   'table'     => 'cust_bill',
127   'addl_from' => 'LEFT JOIN cust_main USING ( custnum )',
128   'hashref'   => { 'invnum' => $invnum },
129   'extra_sql' => ' AND '. $curuser->agentnums_sql,
130 });
131 die "Invoice #$invnum not found!" unless $cust_bill;
132
133 my $custnum = $cust_bill->custnum;
134 my $display_custnum = $cust_bill->cust_main->display_custnum;
135
136 #my $printed = $cust_bill->printed;
137
138 my $link = $templatename ? "$templatename-$invnum" : $invnum;
139
140 </%init>