X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep709.php;h=57183a884a6ff64fe97a0d78d13d1f9da2bcde5c;hb=8f7ac519b7aaf8ec219862597e878d3a28316ac6;hp=e4598f01ea32635173249cf2f1b17273684d5f86;hpb=11861a415cd5166003ee6b150096ccfe2540d138;p=fa-stable.git diff --git a/reporting/rep709.php b/reporting/rep709.php index e4598f01..57183a88 100644 --- a/reporting/rep709.php +++ b/reporting/rep709.php @@ -71,7 +71,7 @@ function getTaxInfo($id) function print_tax_report() { - global $path_to_root, $trans_dir; + global $path_to_root, $trans_dir, $Hooks; $from = $_POST['PARAM_0']; $to = $_POST['PARAM_1']; @@ -116,7 +116,7 @@ function print_tax_report() while ($trans=db_fetch($transactions)) { - if (in_array($trans['trans_type'], array(11,20,1))) { + if (in_array($trans['trans_type'], array(11,20))) { $trans['net_amount'] *= -1; $trans['amount'] *= -1; } @@ -141,7 +141,7 @@ function print_tax_report() $rep->Header(); } } - if (in_array($trans['trans_type'], array(0,2,10,11))) { + if (in_array($trans['trans_type'], array(2,10,11))) { $taxes[$trans['tax_type_id']]['taxout'] += $trans['amount']; $taxes[$trans['tax_type_id']]['out'] += $trans['net_amount']; } else {