This commit was generated by cvs2svn to compensate for changes in r9232,
[freeside.git] / httemplate / search / cust_bill.html
1 <% include( 'elements/search.html',
2                  'title'       => 'Invoice Search Results',
3                  'html_init'   => $html_init,
4                  'menubar'     => $menubar,
5                  'name'        => 'invoices',
6                  'query'       => $sql_query,
7                  'count_query' => $count_query,
8                  'count_addl'  => $count_addl,
9                  'redirect'    => $link,
10                  'header'      => [ 'Invoice #',
11                                     'Balance',
12                                     'Net Amount',
13                                     'Gross Amount',
14                                     'Date',
15                                     FS::UI::Web::cust_header(),
16                                   ],
17                  'fields'      => [
18                    'display_invnum',
19                    sub { sprintf($money_char.'%.2f', shift->get('owed') ) },
20                    sub { sprintf($money_char.'%.2f', shift->get('net') ) },
21                    sub { sprintf($money_char.'%.2f', shift->charged     ) },
22                    sub { time2str('%b %d %Y', shift->_date ) },
23                    \&FS::UI::Web::cust_fields,
24                  ],
25                  'align' => 'rrrrl'.FS::UI::Web::cust_aligns(),
26                  'links' => [
27                    $link,
28                    $link,
29                    $link,
30                    $link,
31                    $link,
32                    ( map { $_ ne 'Cust. Status' ? $clink : '' }
33                          FS::UI::Web::cust_header()
34                    ),
35                  ],
36                  'color' => [ 
37                               '',
38                               '',
39                               '',
40                               '',
41                               '',
42                               FS::UI::Web::cust_colors(),
43                             ],
44                  'style' => [ 
45                               '',
46                               '',
47                               '',
48                               '',
49                               '',
50                               FS::UI::Web::cust_styles(),
51                             ],
52
53   
54       )
55 %>
56 <%init>
57
58 die "access denied"
59   unless $FS::CurrentUser::CurrentUser->access_right('List invoices');
60
61 my $join_cust_main = 'LEFT JOIN cust_main USING ( custnum )';
62 #here is the agent virtualization
63 my $agentnums_sql = $FS::CurrentUser::CurrentUser->agentnums_sql;
64
65 my( $count_query, $sql_query );
66 my $count_addl = '';
67 #my $distinct = '';
68 my %search;
69
70 if ( $cgi->param('invnum') =~ /^\s*(FS-)?(\d+)\s*$/ ) {
71
72   my $invnum_or_invid = "( invnum = $2 OR agent_invid = $2 )";
73   my $where = "WHERE $invnum_or_invid AND $agentnums_sql";
74   
75   $count_query = "SELECT COUNT(*) FROM cust_bill $join_cust_main $where";
76
77   $sql_query = {
78     #'select'    => '*',
79     'table'     => 'cust_bill',
80     'addl_from' => $join_cust_main,
81     'hashref'   => {},
82     'extra_sql' => $where,
83   };
84
85 } else {
86
87   #some false laziness w/cust_bill::re_X
88   my $orderby = 'ORDER BY cust_bill._date';
89
90   if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
91     $search{'agentnum'} = $1;
92   }
93
94   # begin/end/beginning/ending
95   my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, '');
96   $search{'_date'} = [ $beginning, $ending ]
97     unless $beginning == 0 && $ending == 4294967295;
98
99   if ( $cgi->param('invnum_min') =~ /^\s*(\d+)\s*$/ ) {
100     $search{'invnum_min'} = $1;
101   }
102   if ( $cgi->param('invnum_max') =~ /^\s*(\d+)\s*$/ ) {
103     $search{'invnum_max'} = $1;
104   }
105
106   #amounts
107   $search{$_} = [ FS::UI::Web::parse_lt_gt($cgi, $_) ]
108     foreach qw( charged owed );
109
110   $search{'open'} = 1 if $cgi->param('open');
111   $search{'net'}  = 1 if $cgi->param('net' );
112
113   my($query) = $cgi->keywords;
114   if ( $query =~ /^(OPEN(\d*)_)?(invnum|date|custnum)$/ ) {
115     $search{'open'} = 1 if $1;
116     ($search{'days'}, my $field) = ($2, $3);
117     $field = "_date" if $field eq 'date';
118     $orderby = "ORDER BY cust_bill.$field";
119   }
120
121   if ( $cgi->param('newest_percust') ) {
122     $search{'newest_percust'} = 1;
123     $count_query = "SELECT COUNT(DISTINCT cust_bill.custnum), 'N/A', 'N/A'";
124   }
125
126   my $extra_sql = ' WHERE '. FS::cust_bill->search_sql_where( \%search );
127
128   unless ( $count_query ) {
129     $count_query = 'SELECT COUNT(*), '. join(', ',
130                      map "SUM($_)",
131                          ( 'charged',
132                            FS::cust_bill->net_sql,
133                            FS::cust_bill->owed_sql,
134                          )
135                    );
136     $count_addl = [ '$%.2f invoiced (gross)',
137                     '$%.2f invoiced (net)',
138                     '$%.2f outstanding balance',
139                   ];
140   }
141   $count_query .=  " FROM cust_bill $join_cust_main $extra_sql";
142
143   $sql_query = {
144     'table'     => 'cust_bill',
145     'addl_from' => $join_cust_main,
146     'hashref'   => {},
147     #'select'    => "$distinct ". join(', ',
148     'select'    => join(', ',
149                      'cust_bill.*',
150                      #( map "cust_main.$_", qw(custnum last first company) ),
151                      'cust_main.custnum as cust_main_custnum',
152                      FS::UI::Web::cust_sql_fields(),
153                      FS::cust_bill->owed_sql. ' AS owed',
154                      FS::cust_bill->net_sql.  ' AS net',
155                    ),
156     'extra_sql' => $extra_sql,
157     'order_by'  => $orderby,
158   };
159
160 }
161
162 my $link  = [ "${p}view/cust_bill.cgi?", 'invnum', ];
163 my $clink = sub {
164   my $cust_bill = shift;
165   $cust_bill->cust_main_custnum
166     ? [ "${p}view/cust_main.cgi?", 'custnum' ]
167     : '';
168 };
169
170 my $conf = new FS::Conf;
171 my $money_char = $conf->config('money_char') || '$';
172
173 my $html_init = join("\n", map {
174  ( my $action = $_ ) =~ s/_$//;
175  include('/elements/progress-init.html',
176            $_.'form',
177            [ keys %search ],
178            "../misc/${_}invoices.cgi",
179            { 'message' => "Invoices re-${action}ed" }, #would be nice to show the number of them, but...
180            $_, #key
181         ),
182  qq!<FORM NAME="${_}form">!,
183  ( map { my $f = $_;
184          my @values = ref($search{$f}) ? @{ $search{$f} } : $search{$f};
185          map qq!<INPUT TYPE="hidden" NAME="$f" VALUE="$_">!, @values;
186        }
187        keys %search
188  ),
189  qq!</FORM>!
190 } qw( print_ email_ fax_ ftp_ spool_ ) ). 
191
192 '<SCRIPT TYPE="text/javascript">
193
194 function confirm_print_process() {
195   if ( ! confirm("Are you sure you want to reprint these invoices?") ) {
196     return;
197   }
198   print_process();
199 }
200 function confirm_email_process() {
201   if ( ! confirm("Are you sure you want to re-email these invoices?") ) {
202     return;
203   }
204   email_process();
205 }
206 function confirm_fax_process() {
207   if ( ! confirm("Are you sure you want to re-fax these invoices?") ) {
208     return;
209   }
210   fax_process();
211 }
212 function confirm_ftp_process() {
213   if ( ! confirm("Are you sure you want to re-FTP these invoices?") ) {
214     return;
215   }
216   ftp_process();
217 }
218 function confirm_spool_process() {
219   if ( ! confirm("Are you sure you want to re-spool these invoices?") ) {
220     return;
221   }
222   spool_process();
223 }
224
225 </SCRIPT>';
226
227 my $menubar = [];
228
229 if ( $FS::CurrentUser::CurrentUser->access_right('Resend invoices') ) {
230
231   push @$menubar, 'Print these invoices' =>
232                     "javascript:confirm_print_process()",
233                   'Email these invoices' =>
234                     "javascript:confirm_email_process()";
235
236   push @$menubar, 'Fax these invoices' =>
237                     "javascript:confirm_fax_process()"
238     if $conf->exists('hylafax');
239
240   push @$menubar, 'FTP these invoices' =>
241                     "javascript:confirm_ftp_process()"
242     if $conf->exists('cust_bill-ftpformat');
243
244   push @$menubar, 'Spool these invoices' =>
245                     "javascript:confirm_spool_process()"
246     if $conf->exists('cust_bill-spoolformat');
247
248 }
249
250 </%init>