freeside inc. web services for address normalizaion and printing, RT#33849
[freeside.git] / httemplate / view / cust_bill.cgi
1 <& /elements/header.html, mt('Invoice View'), menubar(
2   emt("View this customer (#[_1])",$display_custnum) => "${p}view/cust_main.cgi?$custnum",
3 ) &>
4
5 <SCRIPT TYPE="text/javascript">
6 function areyousure(href, message) {
7   if (confirm(message) == true)
8     window.location.href = href;
9 }
10 </SCRIPT>
11
12 % if ( !$cust_bill->closed ) { # otherwise allow no changes
13 %   my $can_delete = $conf->exists('deleteinvoices')
14 %                    && $curuser->access_right('Delete invoices');
15 %   my $can_void = $curuser->access_right('Void invoices');
16 %   if ( $can_void ) {
17     <& /elements/popup_link.html,
18       'label'       => emt('Void this invoice'),
19       'actionlabel' => emt('Void this invoice'),
20       'action'      => $p.'misc/void-cust_bill.html?invnum='.$invnum,
21     &>
22 %   }
23 %   if ( $can_void and $can_delete ) {
24   &nbsp;|&nbsp;
25 %   }
26 %   if ( $can_delete ) {
27     <A href="" onclick="areyousure(\
28       '<%$p%>misc/delete-cust_bill.html?<% $invnum %>',\
29       <% mt('Are you sure you want to delete this invoice?') |js_string %>)"\
30     TITLE = "<% mt('Delete this invoice from the database completely') |h %>">\
31     <% emt('Delete this invoice') |h %></A>
32 %   }
33 %   if ( $can_void or $can_delete ) {
34   <BR><BR>
35 %   }
36 % }
37
38 % if ( $cust_bill->owed > 0
39 %      && scalar( grep $payby{$_}, qw(BILL CASH WEST MCRD MCHK) )
40 %      && $curuser->access_right(['Post payment', 'Post check payment', 'Post cash payment'])
41 %      && ! $conf->exists('pkg-balances')
42 %    )
43 % {
44 %     my $s = 0;
45
46       <% mt('Post') |h %> 
47
48 %     if ( $payby{'BILL'} && $curuser->access_right(['Post payment', 'Post check payment']) ) { 
49           <% $s++ ? ' | ' : '' %>
50           <A HREF="<% $p %>edit/cust_pay.cgi?payby=BILL;invnum=<% $invnum %>"><% mt('check') |h %></A>
51 %     } 
52
53 %     if ( $payby{'CASH'} && $curuser->access_right(['Post payment', 'Post cash payment']) ) { 
54           <% $s++ ? ' | ' : '' %>
55           <A HREF="<% $p %>edit/cust_pay.cgi?payby=CASH;invnum=<% $invnum %>"><% mt('cash') |h %></A>
56 %     } 
57
58 %     if ( $payby{'WEST'} && $curuser->access_right(['Post payment']) ) { 
59           <% $s++ ? ' | ' : '' %>
60           <A HREF="<% $p %>edit/cust_pay.cgi?payby=WEST;invnum=<% $invnum %>"><% mt('Western Union') |h %></A>
61 %     } 
62
63 %     if ( $payby{'MCRD'} && $curuser->access_right(['Post payment']) ) { 
64           <% $s++ ? ' | ' : '' %>
65           <A HREF="<% $p %>edit/cust_pay.cgi?payby=MCRD;invnum=<% $invnum %>"><% mt('manual credit card') |h %></A>
66 %     } 
67
68 %     if ( $payby{'MCHK'} && $curuser->access_right(['Post payment']) ) { 
69           <% $s++ ? ' | ' : '' %>
70           <A HREF="<% $p %>edit/cust_pay.cgi?payby=MCHK;invnum=<% $invnum %>"><% mt('manual electronic check') |h %></A>
71 %     } 
72
73       <% mt('payment against this invoice') |h %><BR><BR>
74
75 % } 
76
77 % if ( $conf->exists('cust_bill-enable_promised_date') ) {
78 %   my $onclick = include('/elements/popup_link_onclick.html',
79 %      'action'      => $p.'misc/cust_bill-promised_date.html?'.$invnum,
80 %      'actionlabel' => emt('Set promised payment date'),
81 %      'width'       => 320,
82 %      'height'      => 240,
83 %   );
84 %   $onclick = '<A HREF="#" onclick="'.$onclick.'">';
85 %   if ( $cust_bill->promised_date ) {
86 %     my $date_format = $conf->config('date_format') || '%b %o, %Y';
87       <% mt('Payment promised by [_1]', 
88             time2str($date_format, $cust_bill->promised_date) ) %>
89       (&nbsp;<% $onclick %><% mt('change') |h %></A>&nbsp;)
90       <BR><BR>
91 %   }
92 %   elsif ( $cust_bill->owed > 0 ) {
93     <% $onclick %><% mt('Set promised payment date' ) |h %></A>
94     <BR><BR>
95 %   }
96 % }
97
98 % if ( $curuser->access_right('Resend invoices') ) {
99         <A HREF="<% $p %>misc/send-invoice.cgi?method=print;<% $link %>"><% mt('Print this invoice') |h %></A>
100 % }
101
102 % if ( $curuser->access_right('Print and mail invoices') ) {
103         | <& /elements/popup_link.html,
104                'action'      => $p."misc/post_fsinc-invoice.cgi?$link",
105                'label'       => 'Print and mail this invoice online',
106                'actionlabel' => 'Invoice printing and mailing',
107           &>
108 % }
109
110 % if ( $curuser->access_right('Resend invoices') ) {
111
112 %   if ( grep { $_ ne 'POST' } $cust_bill->cust_main->invoicing_list ) { 
113         | <A HREF="<% $p %>misc/send-invoice.cgi?method=email;<% $link %>"><% mt('Re-email this invoice') |h %></A>
114 %   } 
115
116 %   if ( $conf->exists('hylafax') && length($cust_bill->cust_main->fax) ) { 
117         | <A HREF="<% $p %>misc/send-invoice.cgi?method=fax;<% $link %>"><% mt('Re-fax this invoice') |h %></A>
118 %   } 
119
120 % }
121
122 % if (    $curuser->access_right('Resend invoices')
123 %      || $curuser->access_right('Print and mail invoices') ) {
124         <BR><BR>
125 % } 
126
127 % my $br = 0;
128 % if ( $conf->exists('invoice_latex') ) {
129
130   <A HREF="<% $p %>view/cust_bill-pdf.cgi?<% $link %>"><% mt('View typeset invoice PDF') |h %></A>
131
132 %   $br++;
133 % } 
134
135 % if ( $cust_bill->num_cust_event ) {
136 <% $br ? '|' : '' %>
137 <A HREF="<%$p%>search/cust_event.html?invnum=<% $cust_bill->invnum %>"><% mt('View invoice events') |h %></A> 
138 %   $br++;
139 % }
140
141 % if ( $cust_bill->num_cust_bill_event ) { $br++;
142 <A HREF="<%$p%>search/cust_bill_event.cgi?invnum=<% $cust_bill->invnum %>">( <% mt('View deprecated, old-style invoice events') |h %> )</A> 
143 % }
144
145 % my @modes = grep {! $_->disabled} 
146 %   $cust_bill->cust_main->agent->invoice_modes;
147 % if ( @modes || $include_statement_template ) {
148 <% $br ? '|' : '' %>
149 <% mt('View as:') %>
150 <FORM STYLE="display:inline" ACTION="<% $cgi->url %>" METHOD="GET">
151 <INPUT NAME="invnum" VALUE="<% $invnum %>" TYPE="hidden">
152 <& /elements/select-table.html,
153   table       => 'invoice_mode',
154   field       => 'mode',
155   curr_value  => scalar($cgi->param('mode')),
156   records     => \@modes,
157   name_col    => 'modename',
158   onchange    => 'change_invoice_mode',
159   empty_label => '(default)',
160   $include_statement_template ? (
161     'post_options' => [ 'statement', '(statement)' ]
162   ) : ()
163 &>
164 <SCRIPT TYPE="text/javascript">
165 function change_invoice_mode(obj) {
166   obj.form.submit();
167 }
168 </SCRIPT>
169 % }
170
171 <BR><BR>
172
173 % if ( $conf->exists('invoice_html') && ! $cgi->param('plaintext') ) { 
174   <% join('', $cust_bill->print_html(\%opt) ) %>
175 % } else { 
176   <PRE><% join('', $cust_bill->print_text(\%opt) ) |h %></PRE>
177 % } 
178
179 <& /elements/footer.html &>
180 <%init>
181
182 my $curuser = $FS::CurrentUser::CurrentUser;
183
184 die "access denied"
185   unless $curuser->access_right('View invoices');
186
187 my $conf = FS::Conf->new;
188
189 my( $invnum, $mode, $template, $notice_name, $no_coupon );
190 my($query) = $cgi->keywords;
191 if ( $query =~ /^((.+)-)?(\d+)$/ ) {
192   $template = $2;
193   $invnum = $3;
194   $notice_name = 'Invoice';
195 } else {
196   $invnum = $cgi->param('invnum');
197   $template = $cgi->param('template');
198   $notice_name = $cgi->param('notice_name');
199   $mode = $cgi->param('mode');
200 }
201
202 if ($mode eq 'statement') {
203   $mode = undef;
204   $template = 'statement';
205   $notice_name = 'Statement';
206   $no_coupon = 1;
207 }
208
209 my $include_statement_template = $conf->config('payment_receipt_statement_mode') ? 0 : 1;
210
211 my %opt = (
212   'unsquelch_cdr' => $conf->exists('voip-cdr_email'),
213   'template'      => $template,
214   'notice_name'   => $notice_name,
215 );
216
217 $opt{'barcode_img'} = 1 if $conf->exists('invoice-barcode');
218
219 my @payby =  grep /\w/, $conf->config('payby');
220 #@payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH WEST COMP ))
221 @payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH COMP ))
222   unless @payby;
223 my %payby = map { $_=>1 } @payby;
224
225 my $cust_bill = qsearchs({
226   'select'    => 'cust_bill.*',
227   'table'     => 'cust_bill',
228   'addl_from' => 'LEFT JOIN cust_main USING ( custnum )',
229   'hashref'   => { 'invnum' => $invnum },
230   'extra_sql' => ' AND '. $curuser->agentnums_sql,
231 });
232 # if we're asked for a voided invnum, redirect appropriately
233 if (!$cust_bill and FS::cust_bill_void->row_exists("invnum = $invnum") ) {
234   $m->clear_buffer;
235   my $url = $p.'view/cust_bill_void.html?'.$cgi->query_string;
236   $m->print( $cgi->redirect($url) );
237   $m->abort;
238 }
239 die "Invoice #$invnum not found!" unless $cust_bill;
240
241 $cust_bill->set('mode' => $mode);
242
243 my $custnum = $cust_bill->custnum;
244 my $display_custnum = $cust_bill->cust_main->display_custnum;
245
246 my $link = "invnum=$invnum";
247 $link .= ';mode=' . $mode if $mode;
248 $link .= ';template='. uri_escape($template) if $template;
249 $link .= ';notice_name='. $notice_name if $notice_name;
250 $link .= ';no_coupon=1' if $no_coupon;
251
252 </%init>