X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fsearch%2Fsales_commission.html;h=710461c409decb9a4f7b00fbb3f5bd29f0818bd0;hb=739d18b193ef10c6a238759af994f4abd53b4f8a;hp=e74f3792ea630366f8f2a22b3414a019791ce42e;hpb=ecc15d03711690d2b2aeeda2bd8ff1119956c583;p=freeside.git diff --git a/httemplate/search/sales_commission.html b/httemplate/search/sales_commission.html index e74f3792e..710461c40 100644 --- a/httemplate/search/sales_commission.html +++ b/httemplate/search/sales_commission.html @@ -33,7 +33,12 @@ my $date_format = $conf->config('date_format') || '%m/%d/%Y'; my %query = ( 'table' => 'sales' ); my $count_query = "SELECT COUNT(*) FROM sales"; -my $salesnum; +if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) { + $query{hashref}->{agentnum} = $1; + $count_query .= " WHERE agentnum = $1"; +} + +my $salesnum = ''; if ( $cgi->param('salesnum') =~ /^(\d+)$/ ) { $salesnum = $1; } else { @@ -61,17 +66,20 @@ my $sales_sub_maker = sub { sub { my $sales = shift; - #efficiency improvement: ask the db for a sum instead of all the records - my $total = 0; - my @cust_bill_pkg = $sales->cust_bill_pkg( + my $search = $sales->cust_bill_pkg_search( $beginning, $ending, 'cust_main_sales' => $cust_main_sales, 'paid' => $paid, ); - $total += $_->get($field) foreach @cust_bill_pkg; + die 'cust_bill_pkg_search hashref not yet handled' if $search->{hashref}; + + my $total = FS::Record->scalar_sql( + "SELECT SUM(cust_bill_pkg.$field) FROM cust_bill_pkg ". #$search->{table} + $search->{addl_from}. ' '. $search->{extra_sql} + ); - $money_char. sprintf('%.2f', $total); + return $money_char. sprintf('%.2f', $total); }; }; @@ -79,11 +87,21 @@ my $commission_sub = sub { my $sales = shift; #efficiency improvement: ask the db for a sum instead of all the records - my $total_credit = 0; - my @cust_credit = $sales->cust_credit( $beginning, $ending ); - $total_credit += $_->amount foreach @cust_credit; + #my $total_credit = 0; + #my @cust_credit = $sales->cust_credit( $beginning, $ending ); + #$total_credit += $_->amount foreach @cust_credit; + + my $search = $sales->cust_credit_search( $beginning, $ending ); + + my $sql = + "SELECT SUM(cust_credit.amount) FROM cust_credit ". #$search->{table} + $search->{addl_from}. ' '. + ' WHERE commission_salesnum = ? '. #$search->{hashref} + $search->{extra_sql}; + + my $total = FS::Record->scalar_sql($sql, $sales->salesnum); - $money_char. sprintf('%.2f', $total_credit); + $money_char. sprintf('%.2f', $total); }; my $commission_link = [ 'cust_credit.html?'.