X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fsearch%2Fsales_commission.html;h=710461c409decb9a4f7b00fbb3f5bd29f0818bd0;hb=c776d3d0b3ebcdddcb42ed3476e4047fd9c90a9b;hp=57b6cdcd544afe3210c5506f48fdb5e210b6a35f;hpb=b6c0ce19ea154eeec1f992a528c5c7e3ef877e81;p=freeside.git diff --git a/httemplate/search/sales_commission.html b/httemplate/search/sales_commission.html index 57b6cdcd5..710461c40 100644 --- a/httemplate/search/sales_commission.html +++ b/httemplate/search/sales_commission.html @@ -66,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}; - $money_char. sprintf('%.2f', $total); + my $total = FS::Record->scalar_sql( + "SELECT SUM(cust_bill_pkg.$field) FROM cust_bill_pkg ". #$search->{table} + $search->{addl_from}. ' '. $search->{extra_sql} + ); + + return $money_char. sprintf('%.2f', $total); }; }; @@ -84,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?'.