combine ticket notification scrips, #15353
[freeside.git] / httemplate / search / unapplied_cust_pay.html
1 <% include( 'elements/cust_main_dayranges.html',
2                  #'title'       => 'Prepaid Balance Aging Summary', #???
3                  'title'       => 'Unapplied Payments Aging Summary',
4                  'range_sub'   => \&unapplied_payments,
5           )
6 %>
7 <%init>
8
9 die "access denied"
10   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
11
12 </%init>
13 <%once>
14
15 sub unapplied_payments {
16   my($start, $end, $cutoff) = @_;
17
18   FS::cust_main->unapplied_payments_date_sql( $start, $end, 
19           'cutoff' => $cutoff,
20   );
21 }
22
23 </%once>