1 <% include( 'elements/search.html',
3 'html_init' => $html_init,
5 'name' => 'billing events',
7 'count_query' => $count_sql,
11 #'Inv #', 'Inv Date', 'Cust #',
13 FS::UI::Web::cust_header(),
17 sub { time2str("%b %d %Y %T", $_[0]->_date) },
19 #my $cust_bill_event = shift;
20 my $status = $_[0]->status;
21 $status .= ': '.$_[0]->statustext
26 #my $cust_bill_event = shift;
27 'Invoice #'. $_[0]->invnum.
29 time2str("%D", $_[0]->cust_bill_date).
32 \&FS::UI::Web::cust_fields,
34 'align' => 'lrlr'.FS::UI::Web::cust_aligns(),
40 my $part_bill_event = shift;
41 my $template = $part_bill_event->templatename;
42 $template .= '-' if $template;
43 [ "${p}view/cust_bill.cgi?$template", 'invnum'];
45 ( map { $_ ne 'Cust. Status' ? $link_cust : '' }
46 FS::UI::Web::cust_header()
54 FS::UI::Web::cust_colors(),
61 FS::UI::Web::cust_styles(),
67 my $curuser = $FS::CurrentUser::CurrentUser;
70 unless $curuser->access_right('Billing event reports')
71 or $curuser->access_right('View customer billing events')
72 && $cgi->param('invnum') =~ /^(\d+)$/;
74 my $title = $cgi->param('failed')
75 ? 'Failed invoice events'
80 if ( $cgi->param('agentnum') && $cgi->param('agentnum') =~ /^(\d+)$/ ) {
81 $search{agentnum} = $1;
84 ($search{beginning}, $search{ending})
85 = FS::UI::Web::parse_beginning_ending($cgi);
87 if ( $cgi->param('failed') ) {
88 $search{failed} = '1';
91 if ( $cgi->param('part_bill_event.payby') =~ /^(\w+)$/ ) {
95 if ( $cgi->param('invnum') =~ /^(\d+)$/ ) {
99 my $where = 'WHERE '. FS::cust_bill_event->search_sql_where( \%search );
101 my $join = 'LEFT JOIN part_bill_event USING ( eventpart ) '.
102 'LEFT JOIN cust_bill USING ( invnum ) '.
103 'LEFT JOIN cust_main USING ( custnum ) ';
106 'table' => 'cust_bill_event',
107 'select' => join(', ',
109 'part_bill_event.event',
111 'cust_bill._date AS cust_bill_date',
112 'cust_main.custnum AS cust_main_custnum',
113 FS::UI::Web::cust_sql_fields(),
116 'extra_sql' => $where,
117 'order_by' => 'ORDER BY _date ASC',
118 'addl_from' => $join,
121 my $count_sql = "SELECT COUNT(*) FROM cust_bill_event $join $where";
123 my $conf = new FS::Conf;
126 <FONT SIZE="+1">Invoice events are the deprecated, old-style actions taken o
127 n open invoices. See Reports->Billing events->Billing events for current event reports.</FONT><BR><BR>';
129 $html_init .= join("\n", map {
130 ( my $action = $_ ) =~ s/_$//;
131 include('/elements/progress-init.html',
134 "../misc/${_}invoice_events.cgi",
135 { 'message' => "Invoices re-${action}ed" }, #would be nice to show the number of them, but...
138 qq!<FORM NAME="${_}form">!,
139 qq!<INPUT TYPE="hidden" NAME="action" VALUE="$_">!, #not used though
140 (map {qq!<INPUT TYPE="hidden" NAME="$_" VALUE="$search{$_}">!} keys(%search)),
142 } qw( print_ email_ fax_ ) );
146 if ( $curuser->access_right('Resend invoices') ) {
148 push @$menubar, 'Re-print these events' =>
149 "javascript:print_process()",
150 'Re-email these events' =>
151 "javascript:email_process()",
154 push @$menubar, 'Re-fax these events' =>
155 "javascript:fax_process()"
156 if $conf->exists('hylafax');
160 my $link_cust = sub {
161 my $cust_bill_event = shift;
162 $cust_bill_event->cust_main_custnum
163 ? [ "${p}view/cust_main.cgi?", 'custnum' ]