1 <& elements/search.html,
3 'name' => 'net credits',
5 'count_query' => $count_query,
6 'count_addl' => [ '$%.2f total credited (net)', ],
7 'header' => [ 'Net applied',
12 FS::UI::Web::cust_header(),
15 sub { $money_char. sprintf('%.2f', shift->amount ) },
16 sub { my $ccb = shift;
17 '#'.$ccb->invnum. ' '.
18 time2str('%b %d %Y', $ccb->cust_bill_date ).
20 sprintf('%.2f', $ccb->cust_bill_amount).
23 sub { my $ccb = shift;
24 time2str('%b %d %Y', $ccb->_date ).
26 sprintf('%.2f', $ccb->cust_credit_amount ).
29 sub { shift->cust_credit->otaker },
30 sub { shift->cust_credit->reason },
31 \&FS::UI::Web::cust_fields,
36 'cust_credit_amount', #?
37 '', #'otaker' #this is usernum now
40 'align' => 'rrrll'.FS::UI::Web::cust_aligns(),
47 ( map { $_ ne 'Cust. Status' ? $cust_link : '' }
48 FS::UI::Web::cust_header()
57 FS::UI::Web::cust_colors(),
65 FS::UI::Web::cust_styles(),
72 unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
74 my $conf = new FS::Conf;
75 my $money_char = $conf->config('money_char') || '$';
77 my $title = 'Net Credit Search Results';
81 if ( $cgi->param('agentnum') && $cgi->param('agentnum') =~ /^(\d+)$/ ) {
82 push @search, "agentnum = $1";
83 my $agent = qsearchs('agent', { 'agentnum' => $1 } );
84 die "unknown agentnum $1" unless $agent;
85 $title = $agent->agent. " $title";
88 if ( $cgi->param('refnum') && $cgi->param('refnum') =~ /^(\d+)$/ ) {
89 push @search, "refnum = $1";
90 my $part_referral = qsearchs('part_referral', { 'refnum' => $1 } );
91 die "unknown refnum $1" unless $part_referral;
92 $title = $part_referral->referral. " $title";
95 my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi);
96 push @search, "cust_bill._date >= $beginning ",
97 "cust_bill._date <= $ending";
99 #here is the agent virtualization
100 push @search, $FS::CurrentUser::CurrentUser->agentnums_sql;
102 my $where = 'WHERE '. join(' AND ', @search);
104 my $count_query = 'SELECT COUNT(*), SUM(amount)
105 FROM cust_credit_bill
106 LEFT JOIN cust_bill USING ( invnum ) '.
107 FS::UI::Web::join_cust_main('cust_bill') .
111 'table' => 'cust_credit_bill',
112 'select' => join(', ',
113 'cust_credit_bill.*',
114 'cust_credit.amount AS cust_credit_amount',
115 'cust_bill._date AS cust_bill_date',
116 'cust_bill.charged AS cust_bill_charged',
117 'cust_credit.custnum AS custnum',
118 'cust_main.custnum AS cust_main_custnum',
119 FS::UI::Web::cust_sql_fields(),
122 'extra_sql' => $where,
123 'addl_from' => 'LEFT JOIN cust_bill USING ( invnum )
124 LEFT JOIN cust_credit USING ( crednum )'.
125 FS::UI::Web::join_cust_main('cust_bill')
128 my $cust_bill_link = sub {
129 my $cust_credit_bill = shift;
130 $cust_credit_bill->invnum
131 ? [ "${p}view/cust_bill.cgi?", 'invnum' ]
135 #my $cust_credit_link = sub {
136 # my $cust_credit_bill = shift;
137 # $cust_credit_bill->crednum
138 # ? [ "${p}view/cust_credit.cgi?", 'crednum' ]
142 my $cust_link = sub {
143 my $cust_credit_bill = shift;
144 $cust_credit_bill->cust_main_custnum
145 ? [ "${p}view/cust_main.cgi?", 'cust_main_custnum' ]